Skip to content

Commit 8e3d74b

Browse files
FrancescoC-unitysebastienlagarde
authored andcommitted
Fix warning on baking set renaming #6808
1 parent e0f450b commit 8e3d74b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

com.unity.render-pipelines.core/Editor/Lighting/ProbeVolume/ProbeVolumeBakingWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ void InitializeBakingSetList()
131131
m_RenameSelectedBakingSet = false;
132132

133133
// Rename profile asset to match name:
134-
set.profile.name = set.name;
135134
AssetDatabase.RenameAsset(AssetDatabase.GetAssetPath(set.profile), set.name);
135+
set.profile.name = set.name;
136136
}
137137
}
138138
else

com.unity.render-pipelines.high-definition/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1616
- Fixed issue that caused the uber post process to run even if nothing is to be done, leading to different results when disabling every post process manually vs disabling the whole post-processing pipeline.
1717
- Fixed issue that placed an OnDemand shadow in the atlas before it was ever rendered.
1818
- Fixed issue at edge of screen on some platforms when SSAO is on.
19+
- Fixed warning when an APV baking set is renamed.
1920

2021
## [12.1.4] - 2021-12-07
2122

0 commit comments

Comments
 (0)