Update() 개인적인 메소드

private Update ( ) : void
리턴 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);
 }