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

IDefaultVolumeProfileResource.cs 467B

12345678910111213
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>
  4. /// Interface for a class that provides access to the asset used to initialize the default volume profile.
  5. /// </summary>
  6. public interface IDefaultVolumeProfileAsset : IRenderPipelineGraphicsSettings
  7. {
  8. /// <summary>
  9. /// The volume profile asset used to initialize Default Volume Profile.
  10. /// </summary>
  11. public VolumeProfile defaultVolumeProfile { get; set; }
  12. }
  13. }