RetroDECK/tools/configurator/controller_guide.gd
2024-08-29 17:37:17 +01:00

13 lines
406 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
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