예제 #1
0
파일: InputManager.cs 프로젝트: Skittss/Hex
 public bool IsKeyPressed(Keybinds.Actions action)
 {
     if (currentKeyboardState.IsKeyDown(Keybinds.GetKey(action)))
     {
         return(true);
     }
     return(false);
 }
예제 #2
0
파일: InputManager.cs 프로젝트: Skittss/Hex
 public bool IsKeyToggled(Keybinds.Actions action)
 {
     //toggle from up to down
     if (currentKeyboardState.IsKeyDown(Keybinds.GetKey(action)) && previousKeyboardState.IsKeyUp(Keybinds.GetKey(action)))
     {
         return(true);
     }
     return(false);
 }