Exemple #1
0
 public Keybinding(Type handler, KeyCode keyboardBinding, ControllerInputHandler.BindableButtons controllerBinding)
 {
     ButtonHandler     = null;
     HandlerTypeString = handler.ToString();
     KeyboardBinding   = keyboardBinding;
     ControllerBinding = controllerBinding;
 }
Exemple #2
0
 public void GotKeyUp(PlayerControllerButtonHandler handler)
 {
     handler.Released();
 }
Exemple #3
0
 public void GotKeyDown(PlayerControllerButtonHandler handler)
 {
     handler.Pressed();
 }