How to get a display image to appear above the particles?

Pardon my ignorance, but is there currently a way to display an image overt the particles? I have a menu that slides over but the particles are always on top of it making it un-usable. I have tried the toFront() command but it does not work.

any ideas? :stuck_out_tongue: [import]uid: 10355 topic_id: 15338 reply_id: 315338[/import]

add the menu and particles to separate display groups. create the particle display group first and then the menu display group. [import]uid: 71210 topic_id: 15338 reply_id: 56592[/import]

or just use toBack()/toFront() for whole group [import]uid: 12704 topic_id: 15338 reply_id: 57117[/import]

Right, just place the emitter within a group, all of its particles are then drawn within that group only. You can then use :toFront() and :toBack() to move that group in the display hirarchy. You can also use AnyGroup:insert(index, EmitterGroup) to insert the emitter group at a certain index. [import]uid: 10504 topic_id: 15338 reply_id: 57226[/import]