Files
aibis-dream/Assets/Plugins/VolFx/Samples/ScreenFx/Scrips/WeatherSettings.cs
T
2025-05-15 15:37:45 +08:00

14 lines
566 B
C#

using UnityEngine.Rendering;
using UnityEngine.Rendering.Universal;
// ScreenFx © NullTale - https://twitter.com/NullTale/
namespace ScreenFx
{
[VolumeComponentMenuForRenderPipeline("Weather (ScreenFxSample)", typeof(UniversalRenderPipeline))]
internal class WeatherSettings : VolumeComponent
{
public ClampedFloatParameter _snow = new ClampedFloatParameter(0, 0, 1);
public ClampedFloatParameter _sun = new ClampedFloatParameter(0, 0, 1);
public ClampedFloatParameter _clouds = new ClampedFloatParameter(0, 0, 1);
}
}