namespace UnityEngine.Rendering
{
///
/// Interface for a class that provides access to the asset used to initialize the default volume profile.
///
public interface IDefaultVolumeProfileAsset : IRenderPipelineGraphicsSettings
{
///
/// The volume profile asset used to initialize Default Volume Profile.
///
public VolumeProfile defaultVolumeProfile { get; set; }
}
}