Releases: pixijs/particle-emitter
Releases Β· pixijs/particle-emitter
5.0.8
5.0.7
Fixed LinkedListContainer throwing an error in removeChildren()
when destroy()
is called while it has children.
5.0.5
5.0.4
Fix an error that could occur when spawning particles with long frame deltas.
5.0.3
5.0.1
Improvement to cleanup performed in Emitter.destroy()
and add Emitter.destroyed
.
5.0.0
4.3.1
Fixed an edge case in AnimatedParticle, where the particle texture could very rarely be incorrectly chosen.
4.3.0
Added LinkedListContainer
, a semi-experimental Container
subclass that will give better performance when using thousands of short lived particles.
4.2.1
- Fixed emitter allowing a lifetime of
0
for infinite life, as the docs say only-1
. (#133) - Fix error in PathParticle with no speed interpolation (#129)
- Move first
update()
for newly spawned particles after they are added to the parent/list, so that they can recycle themselves in that first update safely.