Artemis.Engine.Input.MouseInput.IsUnheld C# (CSharp) 메소드

IsUnheld() 공개 메소드

Check if a button is not being held down.
public IsUnheld ( MouseButton button ) : bool
button MouseButton
리턴 bool
        public bool IsUnheld(MouseButton button)
        {
            return FramesSinceButtonReleased[(int)button] > 0;
        }