level pt1

This commit is contained in:
Michael Campbell 2026-03-02 23:23:21 -05:00
parent e14289807b
commit ebdb9c7074
13 changed files with 5138 additions and 1 deletions

View file

@ -0,0 +1,15 @@
extends CanvasLayer
var high_speed_hack := false
func _ready() -> void:
hide()
func _process(_delta: float) -> void:
if Input.is_action_just_pressed("debug_menu"):
visible = not visible
func _on_high_speed_button_pressed() -> void:
high_speed_hack = not high_speed_hack