This commit is contained in:
SoulliesOfficial
2026-07-17 17:46:16 -04:00
parent b00ac27e3a
commit 40fa80cd70
1178 changed files with 51090 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#ifndef PARTICLE_VAT_INCLUDED
#define PARTICLE_VAT_INCLUDED
#include "HoudiniVAT.hlsl"
#include "TyflowVAT.hlsl"
void ApplyVAT(AttributesParticle input, inout float4 positionOS, inout float3 normalOS)
{
#if defined(_VAT)
if (_VAT_Toggle < 0.5f)
{
return;
}
#if defined(_VAT_HOUDINI)
ApplyHoudiniVAT(input, positionOS, normalOS);
#elif defined(_VAT_TYFLOW)
ApplyTyflowVAT(input, positionOS, normalOS);
#endif
#endif
}
#endif