mirror of
https://codeberg.org/ProgramSnail/konkr_game_3d.git
synced 2025-12-07 15:18:52 +00:00
9 lines
116 B
GDScript3
9 lines
116 B
GDScript3
|
|
extends Particles
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
emitting = true
|
||
|
|
|
||
|
|
func _physics_process(_delta):
|
||
|
|
if not emitting:
|
||
|
|
queue_free()
|