BehaviourTrees are not ticked

alphabeta

New member
Hello folks,
I'm working on some very basic tree, and it seems that BehaviourManager does not tick my tree
1615550046895.png
Below is the debugger output:
1615550093137.png
As the log shows "fsdfsdfsdfsd" is being printed only once and never again.

Note that I didn't define a BehaviourManager on my own and I let the automatic BehaviorManager be initialized for this test.
Any ideas?

Thanks in advance
 
After the log task has completed your behavior tree will stop. You can either use a repeater that repeats forever or you can enable Restart when Completed on the Behavior Tree component.
 
Oh I see, I was under the impression that the tree runs every tick to evaluate by default.
I will use the restart on complete option.
Thanks
 
Top