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.
26 lines
413 B
26 lines
413 B
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 |
|
} |
|
} |
|
} |
|
}
|
|
|