Esempio n. 1
0
 public SwimJoystickRightState(Tutorial context, ChainedState _back)
     : base(context)
 {
     back = _back;
     next = new SwimAccelerometerUpState(context, this);
     defaulControl = context.playerControl.controlType;
 }
Esempio n. 2
0
 public SwimJoystickState(Tutorial context, ChainedState _back)
     : base(context)
 {
     back = _back;
     next = new BoostState(context, this);
     defaulControl = context.playerControl.controlType;
 }
Esempio n. 3
0
 public SwimAccelerometerDownState(Tutorial context, ChainedState _back)
     : base(context)
 {
     back = _back;
     next = new BoostState(context, this);
     defaulControl = context.playerControl.controlType;
 }