mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 07:25:38 +00:00
6 lines
111 B
GDScript
6 lines
111 B
GDScript
extends Control
|
|
|
|
func _input(event):
|
|
if event.is_action_pressed("rekku_hide"):
|
|
self.visible = !self.visible
|