8 lines
118 B
GDScript
8 lines
118 B
GDScript
extends Button
|
|
|
|
func _ready() -> void:
|
|
self.button_up.connect(on_button_up)
|
|
|
|
func on_button_up():
|
|
get_tree().quit()
|