Files
stas-barecky/Library/PackageCache/com.unity.render-pipelines.core@ce86d16dfe9d/Runtime/RenderPipeline/IVolumetricCloud.cs
2026-01-08 20:43:08 +05: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();
}
}