示例#1
0
 public bool CanExecute(BehaviourTreeAgent agent)
 {
     return(true);
 }
示例#2
0
 public bool CanExecute(BehaviourTreeAgent agent)
 {
     return(children.All(c => c.CanExecute(agent)));
 }