Not signed in
Copyright © 2026 Unity Technologies
Unity does not switch the render pipeline immediately when you set GraphicsSettings.currentRenderPipeline or QualitySettings.renderPipeline. Unity only instantiate a new RenderPipeline instance the first time any Camera renders after you set a new RenderPipelineAsset. To make it more clear we introduced two new callbacks in RenderPipelineManager. Subscribe to activeRenderPipelineCreated to know that RenderPipeline is created. Subscribe to activeRenderPipelineDisposed to know that RenderPipeline is disposed.
Unity does not switch the render pipeline immediately when you set GraphicsSettings.currentRenderPipeline or QualitySettings.renderPipeline. Unity only instantiate a new RenderPipeline instance the first time any Camera renders after you set a new RenderPipelineAsset. To make it more clear we introduced two new callbacks in RenderPipelineManager. Subscribe to activeRenderPipelineCreated to know that RenderPipeline is created. Subscribe to activeRenderPipelineDisposed to know that RenderPipeline is disposed.
2022.1 has reached end of life so the issue will be fixed in a newer version.
Unity does not switch the render pipeline immediately when you set GraphicsSettings.currentRenderPipeline or QualitySettings.renderPipeline. Unity only instantiate a new RenderPipeline instance the first time any Camera renders after you set a new RenderPipelineAsset. To make it more clear we introduced two new callbacks in RenderPipelineManager. Subscribe to activeRenderPipelineCreated to know that RenderPipeline is created. Subscribe to activeRenderPipelineDisposed to know that RenderPipeline is disposed.
How to reproduce:
1. Open the attached user project "SRPConstructor.zip"
2. Observe the Console
Expected result: "OnEnable" is logged after "RenderPipeline Constructor"
Actual result: "RenderPipeline Constructor" is logged after "OnEnable"
Reproducible with: 2020.3.42f1, 2021.3.14f1, 2022.1.23f1, 2022.2.0f1, 2023.1.0a20
Reproducible on: macOS 12.5 (Intel)
Sign in to see your voted issues