您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
77 行
3.6 KiB
77 行
3.6 KiB
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
public class ProceduralSkyRenderer : SkyRenderer
|
|
{
|
|
Material m_SkyProceduralMaterial;
|
|
MaterialPropertyBlock m_PropertyBlock;
|
|
ProceduralSkySettings m_ProceduralSkyParams;
|
|
|
|
readonly int _SunSizeParam = Shader.PropertyToID("_SunSize");
|
|
readonly int _SunSizeConvergenceParam = Shader.PropertyToID("_SunSizeConvergence");
|
|
readonly int _AtmoshpereThicknessParam = Shader.PropertyToID("_AtmosphereThickness");
|
|
readonly int _SkyTintParam = Shader.PropertyToID("_SkyTint");
|
|
readonly int _GroundColorParam = Shader.PropertyToID("_GroundColor");
|
|
readonly int _SunColorParam = Shader.PropertyToID("_SunColor");
|
|
readonly int _SunDirectionParam = Shader.PropertyToID("_SunDirection");
|
|
|
|
public ProceduralSkyRenderer(ProceduralSkySettings proceduralSkyParams)
|
|
{
|
|
m_ProceduralSkyParams = proceduralSkyParams;
|
|
m_PropertyBlock = new MaterialPropertyBlock();
|
|
}
|
|
|
|
public override void Build()
|
|
{
|
|
m_SkyProceduralMaterial = CoreUtils.CreateEngineMaterial("Hidden/HDRenderPipeline/Sky/SkyProcedural");
|
|
}
|
|
|
|
public override void Cleanup()
|
|
{
|
|
CoreUtils.Destroy(m_SkyProceduralMaterial);
|
|
}
|
|
|
|
public override void SetRenderTargets(BuiltinSkyParameters builtinParams)
|
|
{
|
|
if (builtinParams.depthBuffer == BuiltinSkyParameters.nullRT)
|
|
{
|
|
CoreUtils.SetRenderTarget(builtinParams.commandBuffer, builtinParams.colorBuffer);
|
|
}
|
|
else
|
|
{
|
|
CoreUtils.SetRenderTarget(builtinParams.commandBuffer, builtinParams.colorBuffer, builtinParams.depthBuffer);
|
|
}
|
|
}
|
|
|
|
public override void RenderSky(BuiltinSkyParameters builtinParams, bool renderForCubemap)
|
|
{
|
|
CoreUtils.SetKeyword(m_SkyProceduralMaterial, "_ENABLE_SUN_DISK", m_ProceduralSkyParams.enableSunDisk);
|
|
|
|
Color sunColor = Color.white;
|
|
Vector3 sunDirection = Vector3.zero;
|
|
if(builtinParams.sunLight != null)
|
|
{
|
|
sunColor = builtinParams.sunLight.color * builtinParams.sunLight.intensity;
|
|
sunDirection = -builtinParams.sunLight.transform.forward;
|
|
}
|
|
|
|
m_SkyProceduralMaterial.SetVector(HDShaderIDs._SkyParam, new Vector4(m_ProceduralSkyParams.exposure, m_ProceduralSkyParams.multiplier, m_ProceduralSkyParams.rotation, 0.0f));
|
|
m_SkyProceduralMaterial.SetFloat(_SunSizeParam, m_ProceduralSkyParams.sunSize);
|
|
m_SkyProceduralMaterial.SetFloat(_SunSizeConvergenceParam, m_ProceduralSkyParams.sunSizeConvergence);
|
|
m_SkyProceduralMaterial.SetFloat(_AtmoshpereThicknessParam, m_ProceduralSkyParams.atmosphereThickness);
|
|
m_SkyProceduralMaterial.SetColor(_SkyTintParam, m_ProceduralSkyParams.skyTint);
|
|
m_SkyProceduralMaterial.SetColor(_GroundColorParam, m_ProceduralSkyParams.groundColor);
|
|
m_SkyProceduralMaterial.SetColor(_SunColorParam, sunColor);
|
|
m_SkyProceduralMaterial.SetVector(_SunDirectionParam, sunDirection);
|
|
|
|
// This matrix needs to be updated at the draw call frequency.
|
|
m_PropertyBlock.SetMatrix(HDShaderIDs._PixelCoordToViewDirWS, builtinParams.pixelCoordToViewDirMatrix);
|
|
|
|
CoreUtils.DrawFullScreen(builtinParams.commandBuffer, m_SkyProceduralMaterial, m_PropertyBlock, renderForCubemap ? 0 : 1);
|
|
}
|
|
|
|
public override bool IsSkyValid()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|