2023-08-14 04:09:15 +02:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
2023-08-14 04:54:27 +02:00
|
|
|
var galaxy = load("res://levels/galaxy/galaxy.tscn").instantiate()
|
2023-08-14 04:09:15 +02:00
|
|
|
|
|
|
|
func _ready():
|
|
|
|
get_tree().root.add_child.call_deferred(galaxy)
|
|
|
|
#pass # Replace with function body.
|
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta):
|
|
|
|
pass
|