Rasagar/Assets/TerrainDemoScene_URP/ShaderGraphs/CustomFunctions/PseudoSubsurface.hlsl
2024-08-26 23:07:20 +03:00

28 lines
906 B
HLSL

void PseudoSubsurface_half (half3 WorldPosition, half3 WorldNormal, half3 SSRadius, half ShadowResponse, out half3 ssAmount)
{
#ifdef SHADERGRAPH_PREVIEW
half3 color = half3(0,0,0);
half3 atten = 1;
half3 dir = half3 (0.707, 0, 0.707);
#else
half4 shadowCoord = TransformWorldToShadowCoord(WorldPosition);
Light mainLight = GetMainLight(shadowCoord);
half3 color = mainLight.color;
half3 atten = mainLight.shadowAttenuation;
half3 dir = mainLight.direction;
#endif
half NdotL = dot(WorldNormal, -1 * dir);
half alpha = SSRadius;
half theta_m = acos(-alpha); // boundary of the lighting function
half theta = max(0, NdotL + alpha) - alpha;
half normalizer = (2 + alpha) / (2 * (1 + alpha));
half wrapped = (pow(((theta + alpha) / (1 + alpha)), 1 + alpha)) * normalizer;
half shadow = lerp (1, atten, ShadowResponse);
ssAmount = abs(color * shadow * wrapped);
}