Search Issue Tracker
By Design
Votes
0
Found in
2022.3.61f1
6000.0.46f1
6000.1.0b14
6000.2.0a8
Issue ID
UUM-102905
Regression
No
m_RenderPipelineGlobalSettingsMap or m_SRPDefaultSettings is pointing to UnityEngine.Rendering.HighDefinition.HDRenderPipeline when High Definition RP package is removed
Reproduction steps:
1. Open the attached project "ReproProj"
2. Open Package Manager (Window > Package Manager)
3. Remove High Definition RP package
4. Close Editor
5. In File Explorer, open the “ProjectSettings“ folder
6. Open the GraphicsSettings.asset in IDE
7. Observe the line with “m_RenderPipelineGlobalSettingsMap” or “m_SRPDefaultSettings“
Expected result: “m_RenderPipelineGlobalSettingsMap” is pointing to Built-In Render Pipeline or is not present
Actual result: “m_RenderPipelineGlobalSettingsMap” is pointing to “UnityEngine.Rendering.HighDefinition.HDRenderPipeline”
Reproducible with: 2022.3.61f1, 6000.0.46f1, 6000.1.0b14, 6000.2.0a8
Testing environment: Windows 10 Enterprise 21H2
Not reproducible on: No other environment tested
Notes:
- Does not reproduce without closing Editor
- If the remove Button is greyed out in Package Manager, remove in Manifest.json file
- With 2022.3.61f1, look for “m_SRPDefaultSettings“ instead of “m_RenderPipelineGlobalSettingsMap“ in GraphicsSettings.asset
- The workaround is to reset Project Settings
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- "Customize handled extensions" part in the External Tools settings tab is not aligned with other properties
- Editor Diagnostics foldouts do not open when clicked on the foldout title
- [UI Builder] Visual Elements are not placed at the mouse cursor position when Absolute Position Placement is enabled
- "Width" and "Height" text is misaligned with slider ends in Screen Match Mode Parameters section of Panel Settings Asset
- Editor does not quit when Editor is not in focus and any floating window is opened
Resolution Note:
The links in the Graphics Settings remain pointing to the HDRP Global Settings even if the HDRP package is removed. This is because, if HDRP is restored, these references also need to be restored. This approach is consistent with the behavior of MonoBehaviours in the Scene and ScriptableObjects in general.
To determine the availability of a render pipeline in the project, we recommend using the PackageInfo API. If you need to perform this check outside of the Unity project, parsing the manifest.json file located in the Packages folder would be a more suitable alternative.