暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IVolumetricCloud.cs 453B

12345678910111213141516
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>
  4. /// Volumetric Cloud
  5. /// Interface for VolumetricCloud on each SRP
  6. /// </summary>
  7. public interface IVolumetricCloud
  8. {
  9. /// <summary>
  10. /// Check is the current Render Pipeline had VolumetricCloud
  11. /// </summary>
  12. /// <returns>true if the VolumetricCloud is usable on the current pipeline</returns>
  13. public bool IsVolumetricCloudUsable();
  14. }
  15. }