Skip to content

Commit

Permalink
Set some default keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JunePrimavera committed Sep 3, 2023
1 parent b5b5aa5 commit 39a5321
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static void ShipDownKeybind() {
shipDownKeybind = KeyBindingHelper.registerKeyBinding(new KeyBinding(
"key.propulsive.ship.down",
InputUtil.Type.KEYSYM,
GLFW.GLFW_KEY_SEMICOLON,
GLFW.GLFW_KEY_C,
"category.propulsive.keys"
));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void ShipThrottleDownKeybind() {
shipThrottleDownKeybind = KeyBindingHelper.registerKeyBinding(new KeyBinding(
"key.propulsive.ship.tdown",
InputUtil.Type.KEYSYM,
GLFW.GLFW_KEY_SEMICOLON,
GLFW.GLFW_KEY_LEFT_CONTROL,
"category.propulsive.keys"
));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void ShipThrottleUpKeybind() {
shipThrottleUpKeybind = KeyBindingHelper.registerKeyBinding(new KeyBinding(
"key.propulsive.ship.tup",
InputUtil.Type.KEYSYM,
GLFW.GLFW_KEY_SEMICOLON,
GLFW.GLFW_KEY_BACKSLASH,
"category.propulsive.keys"
));

Expand Down

0 comments on commit 39a5321

Please sign in to comment.