immersive-home/app/content/ui/menu/settings/credits.gd
2024-03-16 01:16:08 +01:00

9 lines
131 B
GDScript

extends StaticBody3D
@onready var close = $Content/Button
func _ready():
close.on_button_down.connect(func():
queue_free()
)