Beispiel #1
0
        static void Initialize()
        {
            initialized = true;

            InitShape();
            DefaultMovementInfo = new ShipMovementInfo(
                new Bounded <float>(TimeWarp.AngularAcceleration),
                new Bounded <float>(TimeWarp.ScaleTurning(0)),
                new Bounded <float>(TimeWarp.ScaleAcceleration(60, 0)),
                new Bounded <float>(TimeWarp.ScaleVelocity(60)));
            DefaultState = new ShipState(new Bounded <float>(12),
                                         new Bounded <float>(20),
                                         new Bounded <float>(0),
                                         new Bounded <float>(TimeWarp.RechargeRateToPerSeconds(0, 0)));

            DefaultActions.Add(SlylandroProbePrimary.Create());
            DefaultActions.Add(SlylandroProbeSecondary.Create());

            DefaultControlableSounds = new ControlableSounds(null, "ShipDies");
            DefaultShipSounds        = new ShipSounds("SlylandroProbeDitty");
        }
Beispiel #2
0
 public SlylandroProbeSecondary(SlylandroProbeSecondary copy)
     : base(copy)
 {
 }