Exemplo n.º 1
0
 public CrouchIdleState(OnCrouchState parentState)
 {
     this.parentState = parentState;
 }
Exemplo n.º 2
0
 public CrouchWalkState(OnCrouchState parentState)
 {
     this.parentState = parentState;
 }
Exemplo n.º 3
0
 public OnGroundState()
 {
     onStandState  = new OnStandState(this);
     onCrouchState = new OnCrouchState(this);
     TransitionState(onStandState, null);
 }