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

IsIdleForAtleast() 공개 메소드

Check if the keyboard has been idle for at least the given number of frames.
public IsIdleForAtleast ( int frames ) : bool
frames int
리턴 bool
        public bool IsIdleForAtleast(int frames)
        {
            return FramesSinceLastKeyboardActivity >= frames;
        }