コード例 #1
0
 public MoveTowardsWaypoint(decisionTreeRunner guard)
 {
     this.guard = guard;
 }
コード例 #2
0
 public MoveTowardsWaypoint()
 {
     guard = null;
 }
コード例 #3
0
 public GetNewWaypoint(decisionTreeRunner guard)
 {
     this.guard = guard;
 }
コード例 #4
0
 public GetNewWaypoint()
 {
     guard = null;
 }
コード例 #5
0
 public CheckWayPoint(decisionTreeRunner guard, IDecision yes, IDecision no)
 {
     this.guard = guard;
     this.yes   = yes;
     this.no    = no;
 }
コード例 #6
0
 public CheckWayPoint()
 {
     guard = null;
     yes   = null;
     no    = null;
 }