From 47f66a93ea74ae5d466c8684adf64194854ce520 Mon Sep 17 00:00:00 2001 From: Julien Ignace Date: Mon, 24 Jan 2022 15:16:11 +0100 Subject: [PATCH 1/2] Fixed Volume Explorer --- .../Editor/Lighting/HDLightExplorerExtension.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Editor/Lighting/HDLightExplorerExtension.cs b/com.unity.render-pipelines.high-definition/Editor/Lighting/HDLightExplorerExtension.cs index a1c16d1e4d1..39aeb3b5336 100644 --- a/com.unity.render-pipelines.high-definition/Editor/Lighting/HDLightExplorerExtension.cs +++ b/com.unity.render-pipelines.high-definition/Editor/Lighting/HDLightExplorerExtension.cs @@ -839,7 +839,7 @@ protected virtual LightingExplorerTableColumn[] GetVolumeColumns() { new LightingExplorerTableColumn(LightingExplorerTableColumn.DataType.Checkbox, HDStyles.Enabled, "m_Enabled", 60), // 0: Enabled new LightingExplorerTableColumn(LightingExplorerTableColumn.DataType.Name, HDStyles.Name, null, 200), // 1: Name - new LightingExplorerTableColumn(LightingExplorerTableColumn.DataType.Enum, HDStyles.VolumeMode, "isGlobal", 75, (r, prop, dep) => // 2: Is Global + new LightingExplorerTableColumn(LightingExplorerTableColumn.DataType.Enum, HDStyles.VolumeMode, "m_IsGlobal", 75, (r, prop, dep) => // 2: Is Global { if (!TryGetAdditionalVolumeData(prop, out var volumeData)) { From bd7fc89f575f407a351439630576b37f381af288 Mon Sep 17 00:00:00 2001 From: Julien Ignace Date: Mon, 24 Jan 2022 15:16:31 +0100 Subject: [PATCH 2/2] Update 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 a53c1c6d89f..72aaa9aaf97 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -67,6 +67,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed an issue where APV cells were not populated properly when probe volumes have rotations - Fixed issue where changes to APV baking set lists were not saved. - Fixed Correlated Color Temperature not being applied in Player builds for Enlighten realtime GI lights (case 1370438); +- Fixed a null ref exception in Volume Explorer ## [14.0.0] - 2021-11-17