PlayerJump.Update C# (CSharp) 메소드

Update() 개인적인 메소드

private Update ( ) : void
리턴 void
    private void Update()
    {
        checkKeys();
    }

Usage Example

예제 #1
0
 void Update()
 {
     _inputs.ReadInput();
     _playerMovement.Update();
     _playerJump.Update();
     _playerCombat.Update();
 }
All Usage Examples Of PlayerJump::Update