コード例 #1
0
 public void AppendChild(BehaviourTreeNode child)
 {
     children.Add(child);
 }
コード例 #2
0
 public BehaviourExecutor(BehaviourTreeNode tree)
 {
     this.tree   = tree;
     currentPlan = null;
 }