Files
wrplat-godot/src/components/DebugEnabler.gd
T
qwsdcvghyu89 b18283ed9d
Release / Export Game (push) Successful in 1m59s
Changed debug information to be hidden by default.
2026-06-07 23:19:46 +10:00

5 lines
141 B
GDScript

extends CanvasItem
func _process(_delta: float) -> void:
if Input.is_action_just_pressed("toggle_debug"):
visible = !visible;