So I made a custom screensaver, it displays game snap-vids scrolling horizontally over a parallax scrolling starfield in the background.
The only problem is the stars aren't in the background, they appear over the top of the snap-vids.
Does anyone know how to force particles into a lower z-order, or some other way to force them to the background? I may be missing something obvious.
I think each new particle is a new addition to the draw list, therefore they are almost always on top of anything else on the screen (since stars are being drawn far more frequently than anything else on screen).
I did see a property for "particlesontop" but it is not implemented. I tried setting it to false, and it doesn't even look like the property is part of the particle object yet.
EDIT
I just thought of the hackiest thing ever, which would be to screencap the star field and make it into a loopable video to just play in the background. Still, I would rather use the animation, so I would prefer to figure out how to fix this.