A game about forced loneliness, made by TACStudios
1using System;
2
3namespace UnityEngine.Rendering.Tests
4{
5 [Serializable]
6 class TestVolume : VolumeComponent
7 {
8 public static readonly float k_DefaultValue = 123.0f;
9 public static readonly float k_OverrideValue = 456.0f;
10 public static readonly float k_OverrideValue2 = 789.0f;
11 public static readonly float k_OverrideValue3 = 999.0f;
12
13 public FloatParameter param = new(k_DefaultValue);
14
15 public bool IsActive() => true;
16 }
17}