Example #1
0
 public WalkState(OnStandState parentState)
 {
     this.parentState = parentState;
 }
Example #2
0
 public RunState(OnStandState parentState)
 {
     this.parentState = parentState;
     isRunEvent       = new PlayerStateEventData(EventID.Run);
 }
Example #3
0
 public IdleState(OnStandState parentState)
 {
     this.parentState = parentState;
 }
Example #4
0
 public OnGroundState()
 {
     onStandState  = new OnStandState(this);
     onCrouchState = new OnCrouchState(this);
     TransitionState(onStandState, null);
 }