Ejemplo n.º 1
0
        public override void Update()
        {
            CharacterStateSetter.CheckIdleState();
            CharacterStateSetter.CheckJumpCommand();
            CharacterStateSetter.CheckPunchCommand();
            CharacterStateSetter.CheckKickCommand();
            CharacterStateSetter.CheckBlockCommand();
            CharacterStateSetter.CheckEspecialAtackCommand();

            PlayerController.Walk();
        }
Ejemplo n.º 2
0
 public override void Update()
 {
     if (PlayerController.CharacterInput.Enabled)
     {
         CharacterStateSetter.CheckWalkCommand();
         CharacterStateSetter.CheckJumpCommand();
         CharacterStateSetter.CheckPunchCommand();
         CharacterStateSetter.CheckKickCommand();
         CharacterStateSetter.CheckBlockCommand();
         CharacterStateSetter.CheckEspecialAtackCommand();
     }
     PlayerController.Idle();
 }