pixijs / particle-emitter

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

Particles dont work in pixi v5 #120

Closed dr3adx closed 4 years ago

dr3adx commented 4 years ago

How to reproduce: I just took spaceship destructible example and put:

`

    <script src="https://pixijs.io/pixi-particles/dist/pixi-particles.js"></script>

`

And it doesn't work, no errors in console, only framerates showing with white screen, changing it to pixi 4.6.2 works

andrewstart commented 4 years ago

The code that runs the examples only works on PIXI 4.X, because the process for creating a new renderer changed in PIXI 5. In the project code, see the test/ folder to see different configurations of v4 and v5 working with Pixi Particles.

dr3adx commented 4 years ago

The code that runs the examples only works on PIXI 4.X, because the process for creating a new renderer changed in PIXI 5. In the project code, see the test/ folder to see different configurations of v4 and v5 working with Pixi Particles.

alright thanks