scanlines, sounds, bumper walls, score keep, control legend, timer

This commit is contained in:
2026-05-29 16:37:26 +03:00
parent 2e2b70e030
commit 33ec51625c
10 changed files with 274 additions and 134 deletions
+2 -2
View File
@@ -24,9 +24,9 @@ func _unhandled_input(event: InputEvent) -> void:
rotation.x = clamp(rotation.x, min_vert, max_vert)
if event.is_action_pressed("zoom_in"):
_desired_length = clamp(_desired_length - 1.0, min_zoom, max_zoom)
_desired_length = clamp(_desired_length / 1.2, min_zoom, max_zoom)
if event.is_action_pressed("zoom_out"):
_desired_length = clamp(_desired_length + 1.0, min_zoom, max_zoom)
_desired_length = clamp(_desired_length * 1.2, min_zoom, max_zoom)
if event.is_action_pressed("toggle_mouse_capture"):
if Input.mouse_mode == Input.MOUSE_MODE_CAPTURED: