Files
SemesterGameJam2022/Nodes/Backgroundspawner.gd
2022-12-10 10:35:03 +01:00

13 lines
300 B
GDScript

extends Node3D
# Called when the node enters the scene tree for the first time.
func _ready():
var background = preload("res://background_straight.tscn").instantiate()
add_child(background)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass