5 lines
141 B
GDScript
5 lines
141 B
GDScript
extends CanvasItem
|
|
|
|
func _process(_delta: float) -> void:
|
|
if Input.is_action_just_pressed("toggle_debug"):
|
|
visible = !visible; |