116 lines
5.3 KiB
C#
116 lines
5.3 KiB
C#
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
using UnityEngine.Rendering.Universal;
|
|
|
|
/// <summary>
|
|
/// Volume component for the volumetric fog.
|
|
/// </summary>
|
|
#if UNITY_2023_1_OR_NEWER
|
|
[VolumeComponentMenu("Custom/Volumetric Fog")]
|
|
#if UNITY_6000_0_OR_NEWER
|
|
[VolumeRequiresRendererFeatures(typeof(VolumetricFogRendererFeature))]
|
|
#endif
|
|
[SupportedOnRenderPipeline(typeof(UniversalRenderPipelineAsset))]
|
|
#else
|
|
[VolumeComponentMenuForRenderPipeline("Custom/Volumetric Fog", typeof(UniversalRenderPipeline))]
|
|
#endif
|
|
public sealed class VolumetricFogVolumeComponent : VolumeComponent, IPostProcessComponent
|
|
{
|
|
#region Public Attributes
|
|
|
|
[Header("Distances")]
|
|
[Tooltip("The maximum distance from the camera that the fog will be rendered up to.")]
|
|
public ClampedFloatParameter distance = new ClampedFloatParameter(128.0f, 0.0f, 512.0f);
|
|
[Tooltip("The world height at which the fog will have the density specified in the volume.")]
|
|
public FloatParameter baseHeight = new FloatParameter(0.0f, true);
|
|
[Tooltip("The world height at which the fog will have no density at all.")]
|
|
public FloatParameter maximumHeight = new FloatParameter(50.0f, true);
|
|
|
|
[Header("Ground")]
|
|
[Tooltip("When enabled, allows to define a world height. Below it, fog will have no density at all.")]
|
|
public BoolParameter enableGround = new BoolParameter(false, BoolParameter.DisplayType.Checkbox, true);
|
|
[Tooltip("Below this world height, fog will have no density at all.")]
|
|
public FloatParameter groundHeight = new FloatParameter(0.0f);
|
|
|
|
[Header("Lighting")]
|
|
[Tooltip("How dense is the fog.")]
|
|
public ClampedFloatParameter density = new ClampedFloatParameter(0.2f, 0.0f, 1.0f);
|
|
[Tooltip("Value that defines how much the fog attenuates light as distance increases. Lesser values lead to a darker image.")]
|
|
public MinFloatParameter attenuationDistance = new MinFloatParameter(128.0f, 0.05f);
|
|
|
|
[Header("Main Light")]
|
|
[Tooltip("Disabling this will avoid computing the main light contribution to fog, which in most cases will lead to better performance.")]
|
|
public BoolParameter enableMainLightContribution = new BoolParameter(false, BoolParameter.DisplayType.Checkbox, true);
|
|
[Tooltip("Higher values will make the fog affected by the main light to appear brighter when directly looking to the main light. The higher the value the less the brightness will spread when looking away from the light.")]
|
|
public ClampedFloatParameter mainLightAnisotropy = new ClampedFloatParameter(0.4f, 0.0f, 0.99f);
|
|
[Tooltip("Higher values will make fog affected by the main light to appear brighter.")]
|
|
public ClampedFloatParameter mainLightScattering = new ClampedFloatParameter(0.15f, 0.0f, 1.0f);
|
|
[Tooltip("A multiplier color to tint the main light fog.")]
|
|
public ColorParameter mainLightColorTint = new ColorParameter(Color.white, true, false, true);
|
|
|
|
[Header("Additional Lights")]
|
|
[Tooltip("Disabling this will avoid computing additional lights contribution to fog, which in most cases will lead to better performance.")]
|
|
public BoolParameter enableAdditionalLightsContribution = new BoolParameter(false, BoolParameter.DisplayType.Checkbox, true);
|
|
[Tooltip("Higher values will make the fog affected by additional lights to appear brighter when directly looking to the light source. The higher the value the less the brightness will spread when looking away from the light.")]
|
|
public ClampedFloatParameter additionalLightsAnisotropy = new ClampedFloatParameter(0.25f, 0.0f, 0.99f);
|
|
[Tooltip("Higher values will make fog affected by additional lights to appear brighter.")]
|
|
public ClampedFloatParameter additionalLightsScattering = new ClampedFloatParameter(1.0f, 0.0f, 16.0f);
|
|
[Tooltip("Sets a falloff radius for point and spotlights. A higher value reduces noise towards the origin of the light")]
|
|
public ClampedFloatParameter additionalLightsRadius = new ClampedFloatParameter(0.2f, 0.0f, 1.0f);
|
|
|
|
[Header("Performance & Quality")]
|
|
[Tooltip("Raymarching steps. Greater values will increase the fog quality at the expense of performance.")]
|
|
public ClampedIntParameter maxSteps = new ClampedIntParameter(64, 8, 256);
|
|
[Tooltip("The number of times that the fog texture will be blurred. Higher values lead to softer volumetric god rays at the cost of some performance.")]
|
|
public ClampedIntParameter blurIterations = new ClampedIntParameter(2, 1, 4);
|
|
[Tooltip("Disabling this will completely remove any feature from the volumetric fog from being rendered at all.")]
|
|
public BoolParameter enabled = new BoolParameter(false, BoolParameter.DisplayType.Checkbox, true);
|
|
|
|
#endregion
|
|
|
|
#region Initialization Methods
|
|
|
|
public VolumetricFogVolumeComponent() : base()
|
|
{
|
|
displayName = "Volumetric Fog";
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Volume Component Methods
|
|
|
|
private void OnValidate()
|
|
{
|
|
maximumHeight.overrideState = baseHeight.overrideState;
|
|
maximumHeight.value = Mathf.Max(baseHeight.value, maximumHeight.value);
|
|
baseHeight.value = Mathf.Min(baseHeight.value, maximumHeight.value);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region IPostProcessComponent Methods
|
|
|
|
#if !UNITY_2023_1_OR_NEWER
|
|
|
|
/// <summary>
|
|
/// <inheritdoc/>
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool IsTileCompatible()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// <inheritdoc/>
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool IsActive()
|
|
{
|
|
return enabled.value && distance.value > 0.0f && groundHeight.value < maximumHeight.value && density.value > 0.0f;
|
|
}
|
|
|
|
#endregion
|
|
} |