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