您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
68 行
2.2 KiB
68 行
2.2 KiB
#ifndef CUSTOM_LIGHTING_INCLUDED
|
|
#define CUSTOM_LIGHTING_INCLUDED
|
|
|
|
void MainLight_float(float3 WorldPos, out float3 Direction, out float3 Color, out float ShadowAtten)
|
|
{
|
|
#if defined(SHADERGRAPH_PREVIEW)
|
|
Direction = float3(0.5, 0.5, 0);
|
|
Color = 1;
|
|
ShadowAtten = 1;
|
|
#else
|
|
float4 shadowCoord = TransformWorldToShadowCoord(WorldPos);
|
|
|
|
Light mainLight = GetMainLight(shadowCoord);
|
|
Direction = mainLight.direction;
|
|
Color = mainLight.color;
|
|
|
|
#if !defined(_MAIN_LIGHT_SHADOWS) || defined(_RECEIVE_SHADOWS_OFF)
|
|
ShadowAtten = 1.0h;
|
|
#else
|
|
ShadowSamplingData shadowSamplingData = GetMainLightShadowSamplingData();
|
|
float shadowStrength = GetMainLightShadowStrength();
|
|
ShadowAtten = SampleShadowmap(shadowCoord, TEXTURE2D_ARGS(_MainLightShadowmapTexture,
|
|
sampler_MainLightShadowmapTexture),
|
|
shadowSamplingData, shadowStrength, false);
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
|
|
void DirectSpecular_float(float Smoothness, float3 Direction, float3 WorldNormal, float3 WorldView, out float3 Out)
|
|
{
|
|
float4 White = 1;
|
|
|
|
#if defined(SHADERGRAPH_PREVIEW)
|
|
Out = 0;
|
|
#else
|
|
Smoothness = exp2(10 * Smoothness + 1);
|
|
WorldNormal = normalize(WorldNormal);
|
|
WorldView = SafeNormalize(WorldView);
|
|
Out = LightingSpecular(White, Direction, WorldNormal, WorldView, White, Smoothness);
|
|
#endif
|
|
}
|
|
|
|
void AdditionalLights_float(float Smoothness, float3 WorldPosition, float3 WorldNormal, float3 WorldView, out float3 Diffuse, out float3 Specular)
|
|
{
|
|
float3 diffuseColor = 0;
|
|
float3 specularColor = 0;
|
|
float4 White = 1;
|
|
|
|
#if !defined(SHADERGRAPH_PREVIEW)
|
|
Smoothness = exp2(10 * Smoothness + 1);
|
|
WorldNormal = normalize(WorldNormal);
|
|
WorldView = SafeNormalize(WorldView);
|
|
int pixelLightCount = GetAdditionalLightsCount();
|
|
for (int i = 0; i < pixelLightCount; ++i)
|
|
{
|
|
Light light = GetAdditionalLight(i, WorldPosition);
|
|
half3 attenuatedLightColor = light.color * (light.distanceAttenuation * light.shadowAttenuation);
|
|
diffuseColor += LightingLambert(attenuatedLightColor, light.direction, WorldNormal);
|
|
specularColor += LightingSpecular(attenuatedLightColor, light.direction, WorldNormal, WorldView, White, Smoothness);
|
|
}
|
|
#endif
|
|
|
|
Diffuse = diffuseColor;
|
|
Specular = specularColor;
|
|
}
|
|
|
|
#endif
|