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