Files
CartoonFPS/Library/PackageCache/com.unity.render-pipelines.core@2be5e7224a10/Runtime/RenderPipeline/IVolumetricCloud.cs
SHOUTING_PIRATE 4c8592d0ab initial commit
2025-08-05 09:30:40 +01: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();
}
}