mathe/Library/PackageCache/com.unity.render-pipelines.core@14.0.8/Runtime/RenderPipeline/IVolumetricCloud.cs
2024-09-20 20:30:10 +02:00

17 lines
453 B
C#

namespace UnityEngine.Rendering
{
/// <summary>
/// Volumetric Cloud
/// Interface for VolumetricCloud on each SRP
/// </summary>
public interface IVolumetricCloud
{
/// <summary>
/// Check is the current Render Pipeline had VolumetricCloud
/// </summary>
/// <returns>true if the VolumetricCloud is usable on the current pipeline</returns>
public bool IsVolumetricCloudUsable();
}
}