Behavior Tree loops back to root

Hello!

I’ve been trying to learn a bit more about Behavior Tree to control NPCs.

I’ve made this really simple behavior tree which make the NPC move to a location, then wait 5 seconds.

For some reason, the every time the BT reaches the Move To node, it loops back to the root, like if it was on tick.

Here’s what’s in the service :

The blackboard :

And what happens when I play in editor :


Don’t hesitate if I can provide other info that can help you help me :slightly_smiling_face:

Thank you!

Does the character move?

My guess is that the MoveTo node fails.

I can see that a location is chosen correctly but can you check if there is any reason for your character to be unable to move - maybe it doesn’t have a movement component or maybe it is not possessed by an AI controller.

Try the same tree with the default third person character and default AI controller and do tell if it works on them.

It might be something like what dZh0 says, but that service in that location certainly seems really strange to me.
It would be more “normal” to create a task to find the point and put it before the “move To” command.

since you’re just starting out i’d recommend learning StateTrees instead, ive never like BehaviorTrees