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; }
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 Mutant(Vector3 position, NodedPath path) : base(position, path, BoxLowAnchor, BoxHighAnchor) { }