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);
 }