Files
CartoonFPS/Library/PackageCache/com.unity.render-pipelines.core@2be5e7224a10/Runtime/Settings/IDefaultVolumeProfileSettings.cs
SHOUTING_PIRATE 4c8592d0ab initial commit
2025-08-05 09:30:40 +01: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; }
}
}