5 lines
104 B
GDScript3
5 lines
104 B
GDScript3
|
extends Control
|
||
|
|
||
|
func _unhandled_input(event):
|
||
|
if event.is_action_pressed("menu"):
|
||
|
visible = !visible
|