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