Update() public static method

public static Update ( ) : void
return 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" );
//			}
        }
Esempio n. 2
0
 void FixedUpdate()
 {
     InputManager.Update();
     CheckForPauseButton();
 }