pixijs / particle-emitter

A particle system for PixiJS
http://pixijs.io/particle-emitter/docs
MIT License
796 stars 125 forks source link

use ParticleRenderer #136

Closed connorjclark closed 4 years ago

connorjclark commented 4 years ago

ParticleContainer would be good for performance. Has there been any discussion about using this?

Or maybe I just need to use a ParticleContainer as the container input, and that's good enough? Sorry, new to this :)

See:

https://pixijs.download/dev/docs/PIXI.ParticleContainer.html https://github.com/pixijs/pixi.js/tree/dev/packages/particles

andrewstart commented 4 years ago

As you provide the container, all you need to do is provide a ParticleContainer (and configure it for the changes your particles need).

connorjclark commented 4 years ago

Cool, thank you for the confirmation.