feat: Initial commit

This commit is contained in:
2025-02-14 16:06:00 +08:00
commit da75a84e02
1056 changed files with 163517 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
Shader "Map/Mask"
{
Properties {
[IntRange] _Mask ("Mask", Range(0, 255)) = 0
}
SubShader {
Tags {
"RenderType" = "Opaque"
"Queue" = "Geometry-1"
}
Pass {
Blend Zero One
ZWrite Off
Stencil {
Ref 255
WriteMask [_Mask]
Comp Always
Pass Replace
}
}
}
}