Add shaders

This commit is contained in:
Williams
2026-05-19 15:33:18 +02:00
committed by Lucien
parent 593c2e75b2
commit cd9df45d08
1358 changed files with 2429155 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
Shader "GlobalSnow/EraseGeometry" {
Properties {
}
SubShader {
Tags { "RenderType"="Opaque" "DisableBatching"="True" }
ZWrite Off
ColorMask 0
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
struct v2f {
float4 pos : SV_POSITION;
};
v2f vert( appdata_base v ) {
v2f o;
o.pos = UnityObjectToClipPos(v.vertex);
return o;
}
fixed4 frag(v2f i) : SV_Target {
return fixed4(0,0,0,0);
}
ENDCG
}
}
Fallback Off
}