Drawing primitives at a closer z-level than the contents of a layer...

Hello,

I currently have primitives being drawn in my layer’s draw() function. Problem is, it draws behind all other content in the layer (sprites, labels etc.) I want it to draw on top of all other objects. Is there a way to have the primitives draw on top of all other content in the layer?

Thanks,
Chris

I was able to get the desired result by making a new layer with a very high zOrder on top of the original layer and doing the primitive drawing through that. Though this works, it would be nice to be able to set drawn primitive zOrders in the same layer.

Chris