r3-next/backgounds/galaxy.gd

15 lines
350 B
GDScript3
Raw Normal View History

2023-08-14 04:09:15 +02:00
extends Node2D
# Called when the node enters the scene tree for the first time.
2023-09-06 20:45:24 +02:00
var galaxy = load("res://levels/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