Beispiel #1
0
 public static Keys GetMappedKey(InputManager.ActionTypes type)
 {
     return(instance_.KeyboardMap[type]);
 }
Beispiel #2
0
 public static void ChangeButtonMapping(InputManager.ActionTypes type, Buttons button)
 {
     instance_.ControllerMap[type] = button;
 }
Beispiel #3
0
 public static Buttons GetMappedButton(InputManager.ActionTypes type)
 {
     return(instance_.ControllerMap[type]);
 }
Beispiel #4
0
 public static void ChangeKeyMapping(InputManager.ActionTypes type, Keys key)
 {
     instance_.KeyboardMap[type] = key;
 }