infinite scroll

This commit is contained in:
2022-12-11 01:07:11 +01:00
parent cef356a7b7
commit 6076447fcd
9 changed files with 70 additions and 0 deletions

10
Nodes/move_down.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Node3D
var t = 0
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
t += delta * 45
position.z = t
if(position.z > 250):
queue_free()