コード例 #1
0
 public FollowLanceBranchBuilder(BehaviorTreeIDEnum behaviourTreeType, string path, BehaviourInjectionOrder injectionOrder) : base(behaviourTreeType, path, injectionOrder)
 {
     Main.LogDebug("[FollowLanceBranchBuilder] Created CustomBehaviourTreeBranch");
 }
コード例 #2
0
 public BehaviourTreeBranchBuilder(BehaviorTreeIDEnum behaviourTreeType, string path, BehaviourInjectionOrder injectionOrder)
 {
     this.BehaviourTreeType = behaviourTreeType;
     this.Path           = path;
     this.PathNodeNames  = this.Path.Split('.');
     this.InjectionOrder = injectionOrder;
 }