Unity Shader mostrar objeto atrás do objeto
...
SubShader
{
Tags{...}
ZTest Greater //<<This is all you need for common cases.
//Transparent objects and self-overlap can give you a hard time though
...
}
TheLegendary1248