How to custom update without using Monobehaviour?

contac

Member
I want to execute a Sequence with severial Actions in one Frame, (I use this to recycle something after some kinds of abort).

So i want some code like this:

while(state != Success || state != Failure)
{
state = BT.execute();
}

How could i achieve this with Behavior Designer?


PS:
And i prefer to control the lifetime of BT without using Monobehaviour if i can..
 
Top