diff options
| author | iamcheeseman <[hidden email]> | 2026-01-15 13:51:07 -0500 |
|---|---|---|
| committer | iamcheeseman <[hidden email]> | 2026-01-15 13:51:07 -0500 |
| commit | 4563dfa077e029fbefd192f087338d186155ebfc (patch) | |
| tree | 4af1101f408081e74fc12cb372824b7e2d3e70d4 /src/input.odin | |
| parent | 3c640e0d8244f87fec9518a60c7e5e95713d7f78 (diff) | |
Debug mode; displays collision shapes
Diffstat (limited to 'src/input.odin')
| -rw-r--r-- | src/input.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input.odin b/src/input.odin index 0b1d56e..1513c33 100644 --- a/src/input.odin +++ b/src/input.odin @@ -19,6 +19,7 @@ actions: struct { jump: Keybind, dash: Keybind, shoot: Keybind, + toggle_debug_mode: Keybind, } init_keybinds :: proc() { @@ -27,6 +28,7 @@ init_keybinds :: proc() { actions.jump.input = .SPACE actions.dash.input = .LEFT_SHIFT actions.shoot.input = rl.MouseButton.LEFT + actions.toggle_debug_mode.input = .GRAVE } is_keybind_down :: proc(keybind: Keybind) -> bool { |
