pegchamp/Startup.gd

8 lines
174 B
GDScript3
Raw Normal View History

2021-09-28 15:55:03 +00:00
extends Node
func _ready():
var Jukebox = preload("res://Music/Music.tscn")
var jukebox = Jukebox.instance()
var main = get_tree().current_scene
main.add_child(jukebox)