diff --git a/com.unity.render-pipelines.high-definition/CHANGELOG.md b/com.unity.render-pipelines.high-definition/CHANGELOG.md index eab92ea16d5..b76c55aad42 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -720,6 +720,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed unitialized ray tracing resources when using non-default HDRP asset (case 1259467). - Fixed for area light not updating baked light result when modifying with gizmo. - Fixed overused the atlas for Animated/Render Target Cookies (1259930). +- Fixed sky asserts with XR multipass ### Changed - Improve MIP selection for decals on Transparents diff --git a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDRenderPipeline.cs b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDRenderPipeline.cs index 750e0cb0ffd..cd0a8387452 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDRenderPipeline.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/HDRenderPipeline.cs @@ -1633,6 +1633,7 @@ protected override void Render(ScriptableRenderContext renderContext, Camera[] c cullingResults = req.cullingResults; skipClearCullingResults.Add(req.index); needCulling = false; + m_SkyManager.UpdateCurrentSkySettings(hdCamera); } } }