Exemplo n.º 1
0
        static void Initialize()
        {
            initialized = true;

            InitShape();
            DefaultMovementInfo = new ShipMovementInfo(
                new Bounded <float>(TimeWarp.AngularAcceleration),
                new Bounded <float>(TimeWarp.ScaleTurning(6)),
                new Bounded <float>(TimeWarp.ScaleAcceleration(7, 4)),
                new Bounded <float>(TimeWarp.ScaleVelocity(21)));

            DefaultState = new ShipState(new Bounded <float>(20),
                                         new Bounded <float>(40),
                                         new Bounded <float>(0),
                                         new Bounded <float>(TimeWarp.RechargeRateToPerSeconds(8, 1)));
            DefaultActions.Add(VuxIntruderPrimary.Create());
            DefaultActions.Add(VuxIntruderSecondary.Create());

            DefaultControlableSounds = new ControlableSounds(null, "ShipDies");
            DefaultShipSounds        = new ShipSounds("VuxIntruderDitty");
        }
Exemplo n.º 2
0
 public VuxIntruderSecondary(VuxIntruderSecondary copy) : base(copy)
 {
 }