Hi everybody, my question is a bit complicated, but I’ll do my best to be as clear as possible:
I’m trying to write a shader for a 2.5D game that fulfills the following 2 requirements:
- Draw opaque objects in front of each other based solely on the order they are rendered in, as set by their order in layer (which basically happens by default if ZTest is Off & you’re rendering back to front like in the transparent queue).
- Produce no overdraw.
My first idea for avoiding overdraw was using ZTest & rendering Front To Back. The problem is: Adding “ZTest Less” gets rid of the overdraw, but the shader no longer draws objects solely based on their rendering order. Objects with lower ZDepth will always be drawn in front of others, no matter their order in layer.
Does anybody have an idea how the 2 requirements could be made to work together in a shader? Basically I’m looking for a way to tell a shader if a pixel has been rendered before and if so (regardless of ZDepth) to skip rendering it again.
One more constraint:
There’s going to be >255 objects on screen using this shader, so I think the stencil buffer wouldn’t work as a solution.
Here’s what the top of my shader-code looks like so far:
`SubShader
{
Tags
{
“Queue”=“Geometry”
“IgnoreProjector”=“True”
“RenderType”=“Opaque”
}
Cull Back
Lighting Off
ZTest Less
ZWrite On
Blend Off
Pass
{}`
Thanks for reading, if anyone has an idea you’d really help me out!