How to change the render order?

For me the following worked out:

// Make the line xray
mat.getAdditionalRenderState().setDepthWrite(false);  
mat.getAdditionalRenderState().setDepthTest(false);
geom.setQueueBucket(Bucket.Transparent);
1 Like