Conditional Aborts

MasterGamer

New member
I have two behavior trees that are the same except for different targets, but reevaluating only works for one of the trees. The first tree reevaluates a selector with Both abort type, such that whenever "is int positive" is not true it cancels the branch that is to the right of it and continues to the right branch that is higher up. The second tree does not revaluate the same selector with Both abort type, such that whenever "is int positive" is not true it continues the branch to the right of it.

How do you know when conditional abort reevaluates? I would like it to be able to cancel the branch to the right of it consistently in multiple trees.
 
Top