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

IsUnheldForAtleast() 공개 메소드

Check if a combination of keys have been unpressed for at least the given number of frames.
public IsUnheldForAtleast ( KeyCombination keys, int frames ) : bool
keys KeyCombination
frames int
리턴 bool
        public bool IsUnheldForAtleast(KeyCombination keys, int frames)
        {
            return keys.Keys.All(k => IsUnheldForAtleast(k, frames));
        }

Same methods

KeyboardInput::IsUnheldForAtleast ( Keys key, int frames ) : bool