Rasagar/Library/PackageCache/com.unity.render-pipelines.core/Runtime/Settings/IDefaultVolumeProfileSettings.cs

16 lines
502 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
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; }
}
}