Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed

- [UUM-133861] Fixed "Look rotation viewing vector is zero" log being spammed when holding shift while using a create tool such as Create Sprite.
- [UUM-133526] Material Editor: fixed a warning (`GUI Error: Invalid GUILayout state in MaterialEditor view.`) that was thrown when deleting an extra material slot.
- Fixed warnings related to obsolete API calls with Unity 6.4 and onwards.

## [6.0.9] - 2026-01-30
Expand Down
2 changes: 2 additions & 0 deletions Editor/EditorCore/MaterialEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@
System.Array.Copy(materials, 0, temp, 0, materials.Length - 1);
materials = temp;
SaveUserMaterials(materials);

GUIUtility.ExitGUI();

Check warning on line 365 in Editor/EditorCore/MaterialEditor.cs

View check run for this annotation

Codecov GitHub.com / codecov/patch

Editor/EditorCore/MaterialEditor.cs#L365

Added line #L365 was not covered by tests
return;
}
GUI.backgroundColor = Color.white;
Expand Down