Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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