Files
AR-Menu/Library/PackageCache/com.unity.render-pipelines.core@2c53672ff4c2/Runtime/Settings/IDefaultVolumeProfileSettings.cs
2025-11-30 08:35:03 +02:00

16 lines
502 B
C#

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; }
}
}