Net-Game/Library/PackageCache/com.unity.render-pipelines.core@e13fb214c240/Runtime/RenderPipeline/ICloudBackground.cs
2025-03-28 08:33:16 -04:00

16 lines
497 B
C#

namespace UnityEngine.Rendering
{
/// <summary>
/// Interface defining if an SRP supports environment effects for lens flare occlusion
/// </summary>
public interface ICloudBackground
{
/// <summary>
/// Check is the current Render Pipeline supports environement effects for lens flare occlusion.
/// </summary>
/// <returns>true if environement effects may occlude lens flares.</returns>
public bool IsCloudBackgroundUsable();
}
}