暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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