Update() 공개 정적인 메소드

public static Update ( ) : void
리턴 void
        void FixedUpdate()
        {
            InputManager.Update();
            CheckForPauseButton();

//			var inputDevice = InputManager.ActiveDevice;
//			if (inputDevice.Direction.Left.WasPressed)
//			{
//				Debug.Log( "Left.WasPressed" );
//			}
//			if (inputDevice.Direction.Left.WasReleased)
//			{
//				Debug.Log( "Left.WasReleased" );
//			}
        }
예제 #2
0
 void FixedUpdate()
 {
     InputManager.Update();
     CheckForPauseButton();
 }