Files
BookRPG/Library/PackageCache/com.unity.render-pipelines.core@6f62546dd936/Runtime/RenderPipeline/IVolumetricCloud.cs

17 lines
453 B
C#
Raw Normal View History

2026-07-16 21:49:59 +01:00
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();
}
}