You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
413 B
27 lines
413 B
|
1 month ago
|
Shader "UDEXREAL/InteractableObjectMask"
|
||
|
|
{
|
||
|
|
Properties {
|
||
|
|
[Enum(UnityEngine.Rendering.CompareFunction)] _ZTest("ZTest", Float) = 0
|
||
|
|
}
|
||
|
|
|
||
|
|
SubShader {
|
||
|
|
Tags {
|
||
|
|
"Queue" = "Transparent-550"
|
||
|
|
"RenderType" = "AlphaTest"
|
||
|
|
}
|
||
|
|
|
||
|
|
Pass {
|
||
|
|
Name "Mask"
|
||
|
|
Cull Off
|
||
|
|
ZTest [_ZTest]
|
||
|
|
ZWrite Off
|
||
|
|
ColorMask 0
|
||
|
|
|
||
|
|
Stencil {
|
||
|
|
Ref 1
|
||
|
|
Pass Replace
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|