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.
 
 
 
 

15 lines
502 B

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