Ejemplo n.º 1
0
 public Pursuit(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 2
0
 public Seek(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 3
0
 public ObstacleAvoidance(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 4
0
 public Arrive(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 5
0
 public Dash(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 6
0
 public Flee(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 7
0
 public Repelled(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 8
0
 public Evade(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 9
0
 public FollowPath(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 10
0
 public Parabola(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 11
0
 public Wander(SteeringBehaviors behaviors) : base(behaviors)
 {
 }
Ejemplo n.º 12
0
 protected BaseSteering(SteeringBehaviors behaviors)
 {
     this._behaviors = behaviors;
 }