From de0288e90514c24867d7d1f2998d85100f540330 Mon Sep 17 00:00:00 2001 From: FrancescoC-Unity Date: Thu, 3 Sep 2020 15:11:06 +0200 Subject: [PATCH 1/2] Fix --- .../Lighting/Reflection/HDAdditionalReflectionData.Legacy.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/com.unity.render-pipelines.high-definition/Runtime/Lighting/Reflection/HDAdditionalReflectionData.Legacy.cs b/com.unity.render-pipelines.high-definition/Runtime/Lighting/Reflection/HDAdditionalReflectionData.Legacy.cs index 1f446401766..f567c805d18 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Lighting/Reflection/HDAdditionalReflectionData.Legacy.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/Lighting/Reflection/HDAdditionalReflectionData.Legacy.cs @@ -61,6 +61,10 @@ public override void PrepareCulling() // Force the legacy system to not update the probe cubeProbe.mode = ReflectionProbeMode.Custom; cubeProbe.refreshMode = ReflectionProbeRefreshMode.ViaScripting; +#if UNITY_2020_2_OR_NEWER + if (m_ProbeSettings.mode == ProbeSettings.Mode.Realtime) + cubeProbe.renderDynamicObjects = true; +#endif } } } From 5472eadb01fbaf3fd5a5efd13b1ab5f651f1ff50 Mon Sep 17 00:00:00 2001 From: FrancescoC-Unity Date: Thu, 3 Sep 2020 18:53:58 +0200 Subject: [PATCH 2/2] changelog --- com.unity.render-pipelines.high-definition/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/com.unity.render-pipelines.high-definition/CHANGELOG.md b/com.unity.render-pipelines.high-definition/CHANGELOG.md index 6083b89020e..22203629470 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix several issues with physically-based DoF (TAA ghosting of the CoC buffer, smooth layer transitions, etc) - Fixed GPU hang on D3D12 on xbox. - Fix Amplitude -> Min/Max parametrization conversion +- Fixed issue that caused non-static object to not render at times in OnEnable reflection probes. ### Changed - Preparation pass for RTSSShadows to be supported by render graph.