Skip to content

Instantly share code, notes, and snippets.

@vsigno
Created November 27, 2023 16:15
Show Gist options
  • Save vsigno/c3f8893222c16d0af41398b93ecb4691 to your computer and use it in GitHub Desktop.
Save vsigno/c3f8893222c16d0af41398b93ecb4691 to your computer and use it in GitHub Desktop.
Occlusion Shader for Unity using the Standard Render Pipeline
Shader "Custom/Occlusion"
{
SubShader
{
Tags { "RenderType"="Opaque" }
Tags { "Queue" = "Geometry-1" }
ZWrite On
ZTest LEqual
ColorMask 0
Pass
{
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
struct appdata
{
float4 vertex : POSITION;
};
struct v2f
{
float4 vertex : SV_POSITION;
};
v2f vert (appdata v)
{
v2f o;
o.vertex = UnityObjectToClipPos(v.vertex);
return o;
}
fixed4 frag (v2f i) : SV_Target
{
return fixed4(0.0, 0.0, 0.0, 0.0);
}
ENDCG
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment