Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }