From bff8491bd2fd35572efaec66a18bba2f1cf952f0 Mon Sep 17 00:00:00 2001 From: FrancescoC-Unity Date: Mon, 24 Jan 2022 15:31:55 +0100 Subject: [PATCH 1/2] Fix warning --- .../Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.core/Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs b/com.unity.render-pipelines.core/Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs index 66cba4bc123..048ee47216f 100644 --- a/com.unity.render-pipelines.core/Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs +++ b/com.unity.render-pipelines.core/Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs @@ -170,8 +170,8 @@ void InitializeBakingSetList() m_RenameSelectedBakingSet = false; // Rename profile asset to match name: - set.profile.name = set.name; AssetDatabase.RenameAsset(AssetDatabase.GetAssetPath(set.profile), set.name); + set.profile.name = set.name; } } else From dd885670bd1c45e888fad129d51927ab278bc72f Mon Sep 17 00:00:00 2001 From: FrancescoC-Unity Date: Mon, 24 Jan 2022 15:32:49 +0100 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 6fe1793503c..1db9ffd1a9a 100644 --- a/com.unity.render-pipelines.high-definition/CHANGELOG.md +++ b/com.unity.render-pipelines.high-definition/CHANGELOG.md @@ -101,6 +101,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed issue with automatic RendererList culling option getting ignored (case 1388854). - 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 warning when an APV baking set is renamed. ### Changed - Converted most TGA textures files to TIF to reduce the size of HDRP material samples.