Z-order for particles

Hi,I am new to corona (3 days now) and I am having a problem with particles.
A search didn’t give proper results, though my question seems very basic.

I am creating particles by display.newEmitter()
But there seems to be no way to manipulate the z-order of the particle. Meaning, the emitter is always on top. No matter, in which order I generate the display objects.
Is there a way to get the particle emitter to the background?

Regards
Christian

Hi Christian,

Your best bet is to insert the emitter into a display group which is either at the back or at least in the right place within other display groups.  See here about display groups if you’re not already familiar with them.

That did the trick.
I haven’t understood the combination of insert and groups yet. Now I got it.

Thank you

Hi Christian,

Your best bet is to insert the emitter into a display group which is either at the back or at least in the right place within other display groups.  See here about display groups if you’re not already familiar with them.

That did the trick.
I haven’t understood the combination of insert and groups yet. Now I got it.

Thank you