new private void Update() { interruption.Update(stateMachine); stateMachine.Update(); base.Update(); }
void FixedUpdate() { jumpMachine.Update(); currentState = jumpMachine.currentState; }
void FixedUpdate() { movementMachine.Update(); currentState = movementMachine.currentState; }