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

IsUnheld() 공개 메소드

Check if a combination of keys have been unpressed for any number of frames.
public IsUnheld ( KeyCombination keys ) : bool
keys KeyCombination
리턴 bool
        public bool IsUnheld(KeyCombination keys)
        {
            return keys.Keys.All(IsUnheld);
        }

Same methods

KeyboardInput::IsUnheld ( Keys key ) : bool