Net-Game/Library/PackageCache/com.unity.render-pipelines.core@e13fb214c240/Tests/Runtime/TestVolume.cs
2025-03-28 08:33:16 -04:00

18 lines
484 B
C#

using System;
namespace UnityEngine.Rendering.Tests
{
[Serializable]
class TestVolume : VolumeComponent
{
public static readonly float k_DefaultValue = 123.0f;
public static readonly float k_OverrideValue = 456.0f;
public static readonly float k_OverrideValue2 = 789.0f;
public static readonly float k_OverrideValue3 = 999.0f;
public FloatParameter param = new(k_DefaultValue);
public bool IsActive() => true;
}
}