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