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.
24 lines
874 B
24 lines
874 B
namespace UnityEngine.Rendering
|
|
{
|
|
/// <summary>
|
|
/// By implementing this interface, a render pipeline can indicate to its usage of the Adaptive Probe Volume system..
|
|
/// </summary>
|
|
public interface IProbeVolumeEnabledRenderPipeline
|
|
{
|
|
/// <summary>
|
|
/// Indicates if this render pipeline instance supports Adaptive Probe Volume.
|
|
/// </summary>
|
|
bool supportProbeVolume { get; }
|
|
|
|
/// <summary>
|
|
/// Indicates the maximum number of SH Bands used by this render pipeline instance.
|
|
/// </summary>
|
|
ProbeVolumeSHBands maxSHBands { get; }
|
|
|
|
/// <summary>
|
|
/// Returns the projects global ProbeVolumeSceneData instance.
|
|
/// </summary>
|
|
[System.Obsolete("This field is no longer necessary. #from(2023.3)")]
|
|
ProbeVolumeSceneData probeVolumeSceneData { get; }
|
|
}
|
|
}
|