When you need to render thousands of sprites in PixiJS v8 without killing performance, this is your tool. ParticleContainer batches up to tens of thousands of lightweight Particle instances into a single draw call by restricting what you can animate per object. You get position, rotation, UVs, and color as optional dynamic properties, but particles aren't full scene graph children. The API is new in v8 but production ready. Best for particle effects, bullet hell patterns, or any scenario where you're spawning massive quantities of similar looking objects. If you need individual filters or complex transforms per sprite, stick with regular Sprites and accept the draw call overhead.
npx skills add https://github.com/pixijs/pixijs-skills --skill pixijs-scene-particle-container