Skip to content

Commit a7e86d0

Browse files
authored
[UUM-138960] Removing unnecessary dictionary allocation (#662)
* removing a 1200 entries dictionary only use for nicifying optional notifications * changelog * Update CHANGELOG for utility dictionary removal * Update CHANGELOG with recent changes and fixes
1 parent ee053b3 commit a7e86d0

3 files changed

Lines changed: 4 additions & 1208 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
### Changes
11+
- [UUM-138960] Removed a large utility dictionary to reduce binary size and runtime memory overhead.
12+
1013
### Fixed
1114

1215
- [UUM-133861] Fixed "Look rotation viewing vector is zero" log being spammed when holding shift while using a create tool such as Create Sprite.

Editor/EditorCore/VertexColorPalette.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public static void SetFaceColors(Color col)
216216
pb.Optimize();
217217
}
218218

219-
EditorUtility.ShowNotification("Set Vertex Colors\n" + ColorUtility.GetColorName(col));
219+
EditorUtility.ShowNotification("Vertex Colors Set");
220220
}
221221
}
222222
}

0 commit comments

Comments
 (0)