8 lines
126 B
GDScript
8 lines
126 B
GDScript
extends CPUParticles2D
|
|
|
|
var unlock := false
|
|
|
|
func _process(delta: float) -> void:
|
|
if unlock and not emitting:
|
|
queue_free()
|