namespace UnityEngine.Rendering
{
///
/// Interface for a settings class for that stores the default volume profile for Volume Framework.
///
public interface IDefaultVolumeProfileSettings : IRenderPipelineGraphicsSettings
{
bool IRenderPipelineGraphicsSettings.isAvailableInPlayerBuild => true;
///
/// The default volume profile asset.
///
public VolumeProfile volumeProfile { get; set; }
}
}