Files
LowPolyBattleSim/Library/PackageCache/com.unity.render-pipelines.core@1c27dfa04d8a/Runtime/RenderPipeline/ICloudBackground.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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();
}
}