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.
20 lines
369 B
20 lines
369 B
// Shadow pass
|
|
Pass
|
|
{
|
|
Name ${VFXPassShadow}
|
|
Tags { "LightMode"=${VFXPassShadow} }
|
|
|
|
ZClip [_ZClip]
|
|
ZWrite On
|
|
Blend Off
|
|
|
|
HLSLPROGRAM
|
|
#pragma target 4.5
|
|
#if !USE_ALPHA_TEST && IS_TRANSPARENT_PARTICLE
|
|
#define USE_ALPHA_TEST 1
|
|
#endif
|
|
|
|
#define VFX_PASSDEPTH VFX_PASSDEPTH_SHADOW
|
|
${VFXInclude("Shaders/ParticlePlanarPrimitives/PassDepthOrMV.template")}
|
|
ENDHLSL
|
|
}
|