push push

This commit is contained in:
PfandBoss
2022-12-10 10:32:39 +01:00
parent ffe9b2f047
commit 5f02f31566
7 changed files with 108 additions and 21 deletions

View File

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