r3-next/backgounds/galaxy.gd
2023-09-06 11:45:24 -07:00

15 lines
350 B
GDScript

extends Node2D
# Called when the node enters the scene tree for the first time.
var galaxy = load("res://levels/galaxy.tscn").instantiate()
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