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

IsHeld() 공개 메소드

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

Same methods

KeyboardInput::IsHeld ( Keys key ) : bool