Explosion.gd 131 B

1234567891011
  1. class_name Explosion
  2. extends Particles2D
  3. func _init():
  4. emitting = true
  5. func _process(delta):
  6. if not emitting:
  7. queue_free()