Net-Game/Library/PackageCache/com.unity.render-pipelines.core@e13fb214c240/Runtime/RenderPipeline/IVolumetricCloud.cs
2025-03-28 08:33:16 -04: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();
}
}