immersive-home/app/content/ui/menu/settings/credits.gd

9 lines
131 B
GDScript3
Raw Normal View History

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