示例#1
0
 protected override bool Run(BehaviorTree behaviorTree, BTEnv env)
 {
     Log.Debug($"创建UI特效: {this.effect.name}");
     return(true);
 }
示例#2
0
文件: Node.cs 项目: taigacon/ET
 public bool DoRun(BehaviorTree behaviorTree, BTEnv env)
 {
     env.Get <List <long> >(BTEnvKey.NodePath).Add(this.NodeProto.Id);
     return(this.Run(behaviorTree, env));
 }
示例#3
0
文件: Node.cs 项目: taigacon/ET
 protected abstract bool Run(BehaviorTree behaviorTree, BTEnv env);
示例#4
0
 protected override bool Run(BehaviorTree behaviorTree, BTEnv env)
 {
     return(true);
 }