Update() private méthode

private Update ( ) : void
Résultat void
 void Update()
 {
     _inputs.ReadInput();
     _playerMovement.Update();
     _playerJump.Update();
     _playerCombat.Update();
 }
Exemple #2
0
 public PlayerJumpRobot StartJumpFromGround()
 {
     playerJump.Update(true, true);
     return(this);
 }
Exemple #3
0
 public void CheckJump(bool jumpButton)
 {
     playerJump.Update(grounded, jumpButton);
 }