BlisterUI.Input.KeyboardManager.IsKeyJustPressed C# (CSharp) Method

IsKeyJustPressed() public method

public IsKeyJustPressed ( Keys key ) : bool
key Keys
return bool
        public bool IsKeyJustPressed(Keys key)
        {
            return cKS.IsKeyDown(key) && pKS.IsKeyUp(key);
        }