暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IDefaultVolumeProfileSettings.cs 502B

123456789101112131415
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>
  4. /// Interface for a settings class for that stores the default volume profile for Volume Framework.
  5. /// </summary>
  6. public interface IDefaultVolumeProfileSettings : IRenderPipelineGraphicsSettings
  7. {
  8. bool IRenderPipelineGraphicsSettings.isAvailableInPlayerBuild => true;
  9. /// <summary>
  10. /// The default volume profile asset.
  11. /// </summary>
  12. public VolumeProfile volumeProfile { get; set; }
  13. }
  14. }