rearengement

This commit is contained in:
2025-09-04 17:55:05 +02:00
parent 1913038265
commit fd67adacc9
23 changed files with 475 additions and 0 deletions

14
script/destroy.gd Normal file
View File

@@ -0,0 +1,14 @@
extends CPUParticles2D
var time :=0.0
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
emitting = true
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
time+=delta
if time >= 10:
queue_free()