Files
Fishing2/Assets/Levels/Map/Shader/RF4_DepthMask.shader
2025-05-10 12:49:47 +08:00

23 lines
325 B
Plaintext

Shader "RF4/DepthMask" {
Properties {
}
//DummyShaderTextExporter
SubShader{
Tags { "RenderType" = "Opaque" }
LOD 200
CGPROGRAM
#pragma surface surf Standard
#pragma target 3.0
struct Input
{
float2 uv_MainTex;
};
void surf(Input IN, inout SurfaceOutputStandard o)
{
o.Albedo = 1;
}
ENDCG
}
}