final is here

This commit is contained in:
2025-09-08 21:58:22 +02:00
parent 2781204d6d
commit f91ae53533
20 changed files with 269 additions and 74 deletions

14
script/score_particles.gd Normal file
View File

@@ -0,0 +1,14 @@
extends CPUParticles2D
@export var label := Label
var score := 0
func _ready() -> void:
emitting = true
label.text = "+" + str(score)
func _process(delta: float) -> void:
if not emitting:
queue_free()