Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IntermediateTextureMode.cs 921B

1234567891011121314151617
  1. namespace UnityEngine.Rendering.Universal
  2. {
  3. /// <summary>
  4. /// Controls when URP renders via an intermediate texture.
  5. /// </summary>
  6. public enum IntermediateTextureMode
  7. {
  8. /// <summary>
  9. /// Uses information declared by active Renderer Features to automatically determine whether to render via an intermediate texture or not. <seealso cref="ScriptableRenderPass.ConfigureInput"/>.
  10. /// </summary>
  11. Auto,
  12. /// <summary>
  13. /// Forces rendering via an intermediate texture if any Render Feature is active. Use this option for compatibility with Renderer Features that do not support rendering directly to backbuffer or RenderFeatures that do not declare their inputs with <see cref="ScriptableRenderPass.ConfigureInput"/>. Using this option might have a significant performance impact on some platforms such as Quest.
  14. /// </summary>
  15. Always
  16. }
  17. }