I\'m creating loads of particles (80.000 to be exact) and I have set a transparent map, though, not all particles are transparent.
I\'m using a transparent PNG image
You can set the alphaTest property of the material instead of transparency. For example,
alphaTest
material.alphaTest = 0.5; material.transparent = false;
three.js no longer sorts particles; they are rendered in the order they appear in the buffer.
three.js r.85