Artemis.Engine.Input.MouseInput.IsUnheld C# (CSharp) Méthode

IsUnheld() public méthode

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