mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
14 lines
440 B
GDScript
14 lines
440 B
GDScript
extends PanelContainer
|
|
|
|
func _process(delta):
|
|
# TODO hack. Use state machine?
|
|
if %action_gridcontainer.visible == true:
|
|
if Input.is_action_pressed("back_button"):
|
|
%action_gridcontainer.visible = false
|
|
%retroarch_button.grab_focus()
|
|
for i in range(%system_gridcontainer.get_child_count()):
|
|
var child = %system_gridcontainer.get_child(i)
|
|
if child is Button:
|
|
child.visible=true
|
|
child.toggle_mode = false
|