Exemplo n.º 1
0
 public void AppendChild(BehaviourTreeNode child)
 {
     children.Add(child);
 }
Exemplo n.º 2
0
 public BehaviourExecutor(BehaviourTreeNode tree)
 {
     this.tree   = tree;
     currentPlan = null;
 }