Pixi v8 draw order

The particle effect doesn't draw in the right order

4 reply
2 voices
last update by
Author
Post
Aug 21, 2026 at 8:39 am
Participant

Using Pixi v8.19.0 & NeutrinoParticles.js v1.1.1 Effects can draw underneath siblings that the scene graph places below them. EffectPipe.addRenderable adds the effect to the instruction set without first calling renderer.renderPipes.batch.break(instructionSet), so the batch that was open when the effect was reached is flushed after the effect's instruction, and everything in it lands on top. PIXI's own CustomRenderPipe breaks the batch for exactly this reason.

Aug 21, 2026 at 9:09 am
Participant

Thank you. I'm on it

Aug 21, 2026 at 12:54 pm
Participant

Fix will be published with editor 2.0.11 today.

Aug 23, 2026 at 14:09 pm
Participant

confirmed, pixi8 runtime v1.1.2 fixes this issue, thanks