mathe/Library/PackageCache/com.unity.render-pipelines.core@14.0.8/Runtime/RenderPipeline/ICloudBackground.cs

17 lines
453 B
C#
Raw Normal View History

2024-09-20 20:30:10 +02:00
namespace UnityEngine.Rendering
{
/// <summary>
/// Volumetric Cloud
/// Interface for CloudBackground on each SRP
/// </summary>
public interface ICloudBackground
{
/// <summary>
/// Check is the current Render Pipeline had CloudBackground
/// </summary>
/// <returns>true if the CloudBackground is usable on the current pipeline</returns>
public bool IsCloudBackgroundUsable();
}
}