您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
92 行
3.1 KiB
92 行
3.1 KiB
#ifndef UNITY_ATMOSPHERIC_SCATTERING_INCLUDED
|
|
#define UNITY_ATMOSPHERIC_SCATTERING_INCLUDED
|
|
|
|
#include "CoreRP/ShaderLibrary/VolumeRendering.hlsl"
|
|
#include "CoreRP/ShaderLibrary/Filtering.hlsl"
|
|
|
|
#include "AtmosphericScattering.cs.hlsl"
|
|
#include "../SkyVariables.hlsl"
|
|
#include "../../ShaderVariables.hlsl"
|
|
#include "../../Lighting/VBuffer.hlsl"
|
|
|
|
#if (SHADEROPTIONS_VOLUMETRIC_LIGHTING_PRESET != 0)
|
|
TEXTURE3D(_VBufferLighting);
|
|
#endif
|
|
|
|
CBUFFER_START(AtmosphericScattering)
|
|
float _AtmosphericScatteringType;
|
|
// Common
|
|
float _FogColorMode;
|
|
float4 _FogColorDensity; // color in rgb, density in alpha
|
|
float4 _MipFogParameters;
|
|
// Linear fog
|
|
float4 _LinearFogParameters;
|
|
// Exp fog
|
|
float4 _ExpFogParameters;
|
|
CBUFFER_END
|
|
|
|
#define _MipFogNear _MipFogParameters.x
|
|
#define _MipFogFar _MipFogParameters.y
|
|
#define _MipFogMaxMip _MipFogParameters.z
|
|
|
|
#define _FogDensity _FogColorDensity.w
|
|
#define _FogColor _FogColorDensity
|
|
|
|
#define _LinearFogStart _LinearFogParameters.x
|
|
#define _LinearFogEnd _LinearFogParameters.y
|
|
#define _LinearFogOneOverRange _LinearFogParameters.z
|
|
|
|
#define _ExpFogDistance _ExpFogParameters.x
|
|
|
|
float3 GetFogColor(PositionInputs posInput)
|
|
{
|
|
if (_FogColorMode == FOGCOLORMODE_CONSTANT_COLOR)
|
|
{
|
|
return _FogColor.rgb;
|
|
}
|
|
else if (_FogColorMode == FOGCOLORMODE_SKY_COLOR)
|
|
{
|
|
// Based on Uncharted 4 "Mip Sky Fog" trick: http://advances.realtimerendering.com/other/2016/naughty_dog/NaughtyDog_TechArt_Final.pdf
|
|
float mipLevel = (1.0 - _MipFogMaxMip * saturate((posInput.linearDepth - _MipFogNear) / (_MipFogFar - _MipFogNear))) * _SkyTextureMipCount;
|
|
float3 dir = normalize(posInput.positionWS - GetPrimaryCameraPosition());
|
|
return SampleSkyTexture(dir, mipLevel).rgb;
|
|
}
|
|
else // Should not be possible.
|
|
return float3(0.0, 0.0, 0.0);
|
|
}
|
|
|
|
// Returns fog color in rgb and fog factor in alpha.
|
|
float4 EvaluateAtmosphericScattering(PositionInputs posInput)
|
|
{
|
|
float3 fogColor = 0;
|
|
float fogFactor = 0;
|
|
|
|
#if (SHADEROPTIONS_VOLUMETRIC_LIGHTING_PRESET != 0)
|
|
float4 volFog = SampleInScatteredRadianceAndTransmittance(TEXTURE3D_PARAM(_VBufferLighting, s_trilinear_clamp_sampler),
|
|
posInput.positionNDC, posInput.linearDepth,
|
|
_VBufferResolution, _VBufferScaleAndSliceCount,
|
|
_VBufferDepthEncodingParams);
|
|
fogColor = volFog.rgb;
|
|
fogFactor = 1 - volFog.a;
|
|
|
|
#else
|
|
|
|
if (_AtmosphericScatteringType == FOGTYPE_EXPONENTIAL)
|
|
{
|
|
fogColor = GetFogColor(posInput);
|
|
fogFactor = _FogDensity * (1.0f - TransmittanceHomogeneousMedium(1.0f / _ExpFogDistance, posInput.linearDepth));
|
|
}
|
|
else if (_AtmosphericScatteringType == FOGTYPE_LINEAR)
|
|
{
|
|
fogColor = GetFogColor(posInput);
|
|
fogFactor = _FogDensity * saturate((posInput.linearDepth - _LinearFogStart) * _LinearFogOneOverRange);
|
|
}
|
|
else // NONE
|
|
{
|
|
}
|
|
#endif
|
|
|
|
return float4(fogColor, fogFactor);
|
|
}
|
|
|
|
#endif
|