6 lines
111 B
GDScript3
6 lines
111 B
GDScript3
|
|
extends Control
|
||
|
|
|
||
|
|
func _input(event):
|
||
|
|
if Input.is_action_just_pressed("toggle_controls"):
|
||
|
|
visible = !visible
|