暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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