1
Fork 0
mirror of https://github.com/Steffo99/pineapple-surf.git synced 2024-11-21 23:34:21 +00:00
pineapple-surf/base/Base.gd

27 lines
481 B
GDScript3
Raw Normal View History

2023-01-07 11:03:21 +00:00
extends Node
var current_scn: Node = null
func change_scene(path: String):
var res: Resource = load(path)
var scn: Node = res.instantiate()
add_child(scn)
if current_scn:
current_scn.queue_free()
current_scn = scn
func start_game():
print("Starting game...")
change_scene("res://island/Island.tscn")
func goto_menu():
print("Going to the menu...")
change_scene("res://menu/Menu.tscn")
current_scn.connect("play_pressed", start_game)
func _ready():
goto_menu()