コード例 #1
0
 public Root(BehaviorTreeBlueprint <T> blueprint) : base(blueprint, 0)
 {
 }
コード例 #2
0
 public SelectorNode(BehaviorTreeBlueprint <T> blueprint, int selfIndex) : base(blueprint, selfIndex)
 {
 }
コード例 #3
0
 public BlockerNode(BehaviorTreeBlueprint <T> blueprint, int selfIndex, float chance) : base(blueprint, selfIndex) => this.chance = chance;
コード例 #4
0
 public LeafNode(BehaviorTreeBlueprint <T> blueprint, int selfIndex, BehaviorAction <T> action) : base(blueprint, selfIndex) => this.action = action;
コード例 #5
0
 public RepeaterNode(BehaviorTreeBlueprint <T> blueprint, int selfIndex) : base(blueprint, selfIndex)
 {
 }