Artemis.Engine.Input.KeyboardInput.IsUnheldFor C# (CSharp) Method

IsUnheldFor() public method

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

Same methods

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