Update() private method

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