mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
10 lines
159 B
GDScript
10 lines
159 B
GDScript
extends Control
|
|
|
|
|
|
func _on_ok_pressed():
|
|
get_tree().change_scene("res://source/scenes/GUI/main_menu.tscn")
|
|
|
|
|
|
func set_text(text) -> void:
|
|
$Label.text = text
|