您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
57 行
1.9 KiB
57 行
1.9 KiB
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
// Keep this class first in the file. Otherwise it seems that the script type is not registered properly.
|
|
[Serializable]
|
|
public sealed class VisualEnvironment : VolumeComponent
|
|
{
|
|
public SkyTypeParameter skyType = new SkyTypeParameter(SkyType.None);
|
|
public FogTypeParameter fogType = new FogTypeParameter(FogType.None);
|
|
|
|
public void PushFogShaderParameters(CommandBuffer cmd, FrameSettings frameSettings)
|
|
{
|
|
switch (fogType.value)
|
|
{
|
|
case FogType.None:
|
|
{
|
|
AtmosphericScattering.PushNeutralShaderParameters(cmd);
|
|
break;
|
|
}
|
|
case FogType.Linear:
|
|
{
|
|
var fogSettings = VolumeManager.instance.stack.GetComponent<LinearFog>();
|
|
fogSettings.PushShaderParameters(cmd, frameSettings);
|
|
break;
|
|
}
|
|
case FogType.Exponential:
|
|
{
|
|
var fogSettings = VolumeManager.instance.stack.GetComponent<ExponentialFog>();
|
|
fogSettings.PushShaderParameters(cmd, frameSettings);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO instead of hardcoding this, we need to generate the information from the existing sky currently implemented.
|
|
public enum SkyType
|
|
{
|
|
None,
|
|
HDRISky,
|
|
ProceduralSky
|
|
}
|
|
|
|
[Serializable]
|
|
public sealed class SkyTypeParameter : VolumeParameter<SkyType>
|
|
{
|
|
public SkyTypeParameter(SkyType value, bool overrideState = false)
|
|
: base(value, overrideState)
|
|
{
|
|
}
|
|
}
|
|
}
|