How to abort/pause a sequnce without restarting the current iteration

Darkkingdom

New member
Hey^^

I'm stuck in the following situation:
  • I have two branches attack and movement
  • When the attack is ready the movement branch is aborted with a conditional "lower priority" abort
  • The problem is that the movement sequence (which the enemy should go through one by one) is restarted every time the attack happens
  • What I want is that the squence just continues at the child it had before the abort

So there any way to pause or abort a sequence without resetting there current child interration index?

bt.png
 
You are not able to revert back to a previous node after an abort. For this situation you could add a new conditional task which checks to determine if the subtree can skip the first nodes.
 
Top