diff --git a/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs b/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs index 6f5d82c0d4e..095d4cd1ae1 100644 --- a/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs +++ b/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs @@ -225,7 +225,7 @@ void DrawProbeDebug(Camera camera) var probeBuffer = debug.probeBuffers[i]; var props = debug.props[i]; props.SetInt("_ShadingMode", (int)debugDisplay.probeShading); - props.SetFloat("_ExposureCompensation", -debugDisplay.exposureCompensation); + props.SetFloat("_ExposureCompensation", debugDisplay.exposureCompensation); props.SetFloat("_ProbeSize", debugDisplay.probeSize); props.SetFloat("_CullDistance", debugDisplay.probeCullingDistance); props.SetInt("_MaxAllowedSubdiv", debugDisplay.maxSubdivToVisualize); diff --git a/com.unity.render-pipelines.high-definition/CHANGELOG.md b/com.unity.render-pipelines.high-definition/CHANGELOG.md index f3357e9cbd1..9bfb6f5791a 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -56,6 +56,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed the volume not being assigned on some scene templates. - Fixed corruption in player with lightmap uv when Optimize Mesh Data is enabled [1357902] - Fixed a warning to Rendering Debugger Runtime UI when debug shaders are stripped. +- Fixed Probe volume debug exposure compensation to match the Lighting debug one. ### Changed - Visual Environment ambient mode is now Dynamic by default.