10 lines
148 B
GDScript
10 lines
148 B
GDScript
extends Control
|
|
|
|
|
|
|
|
func load_main_menu():
|
|
get_tree().change_scene("res://scenes/MainMenu.tscn")
|
|
|
|
|
|
func _on_BackButton_pressed():
|
|
load_main_menu()
|