This commit is contained in:
PfandBoss
2022-12-10 09:49:40 +01:00
parent 5b74f2c77a
commit ffe9b2f047
4 changed files with 26 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
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