Beispiel #1
0
 public Drone(Vector3 position, NodedPath path)
     : base(DroneModel, new Vector3(0, -60, 0), Vector3.Zero, BoxLowAnchor, BoxHighAnchor, 1.5f)
 {
     Position = position;
     Path = path;
     Velocity = DefaultVelocity;
 }
Beispiel #2
0
 public GroundMonster(Vector3 position, NodedPath path, Vector3 lowanchor, Vector3 highanchor) : base(null, Vector3.Zero, Vector3.Zero, lowanchor, highanchor, 0.25f, "Take 001", false)
 {
     Position = position;
     Model    = WalkingModel;
     Path     = path;
     Velocity = DefaultVelocity;
 }
 public GroundMonster(Vector3 position, NodedPath path, Vector3 lowanchor, Vector3 highanchor)
     : base(null, Vector3.Zero, Vector3.Zero, lowanchor, highanchor, 0.25f, "Take 001", false)
 {
     Position = position;
     Model = WalkingModel;
     Path = path;
     Velocity = DefaultVelocity;
 }
Beispiel #4
0
 public Drone(Vector3 position, NodedPath path) : base(DroneModel, new Vector3(0, -60, 0), Vector3.Zero, BoxLowAnchor, BoxHighAnchor, 1.5f)
 {
     Position = position;
     Path     = path;
     Velocity = DefaultVelocity;
 }
Beispiel #5
0
 public Mutant(Vector3 position, NodedPath path)
     : base(position, path, BoxLowAnchor, BoxHighAnchor)
 {
 }
Beispiel #6
0
 public Mutant(Vector3 position, NodedPath path) : base(position, path, BoxLowAnchor, BoxHighAnchor)
 {
 }