I am setting up a flying weapon for a turn-based battle.
I am trying to make an arrow fly using the Change Position node, but the arrow appears near the user of the arrow and does not fly towards the enemy.
I have replaced the Moving Object in the schematic (which works) that walks towards the enemy during the turn-based battle with the arrow prefab, and I have added a Spawn Prefab node before the Change Position node.
Could there be an issue with this method?

If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
Initially, the arrow would hit the enemy and not disappear, flying around together with the enemy.
However, after configuring the prefab to be destroyed at the end, the issue was resolved.
THX.
However, another problem remains.
When the arrow hits an ally, it pushes the ally forward as it moves.
I disabled all collisions and rigidbodies and even used the Ignore Collision node, but the result didn't change.
This doesn't seem to be an issue with ORK itself, but is there a solution that can be implemented on the ORK side?
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
I have resolved this issue now.
The arrow did not have a Collider, but it did have a NavMesh Agent component attached. Because of this, it was colliding with characters that also had the NavMesh Agent component.
When the arrow wasn't flying properly, I had attached a NavMesh Agent component for testing purposes, but I forgot to remove it, and that turned out to be the cause.
Thanks a lot.