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