From 4563dfa077e029fbefd192f087338d186155ebfc Mon Sep 17 00:00:00 2001 From: iamcheeseman <[hidden email]> Date: Thu, 15 Jan 2026 13:51:07 -0500 Subject: Debug mode; displays collision shapes --- src/input.odin | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/input.odin') 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 { -- cgit v1.3-2-g0d8e