您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
742 B
22 行
742 B
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
public class ExponentialFog : AtmosphericScattering
|
|
{
|
|
private readonly static int m_ExpFogParam = Shader.PropertyToID("_ExpFogParameters");
|
|
|
|
public MinFloatParameter fogDistance = new MinFloatParameter(200.0f, 0.0f);
|
|
|
|
public override void PushShaderParameters(CommandBuffer cmd, FrameSettings frameSettings)
|
|
{
|
|
PushShaderParametersCommon(cmd, FogType.Exponential, frameSettings);
|
|
cmd.SetGlobalVector(m_ExpFogParam, new Vector4(Mathf.Max(0.0f, fogDistance), 0.0f, 0.0f, 0.0f));
|
|
}
|
|
}
|
|
|
|
}
|