Skip to content

Commit

Permalink
[unity][4.0] SkeletonDataAsset Atlas Assets array immediately resets …
Browse files Browse the repository at this point in the history
…size in Inspector after changing array size. Fixed on 4.1+ via commit b79316d already.
  • Loading branch information
HaraldCsaszar committed Sep 26, 2022
1 parent 1dfa252 commit 3fc55df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ override public void OnInspectorGUI () {
}

if (changeCheck.changed) {
if (requiresReload || serializedObject.ApplyModifiedProperties()) {
if (serializedObject.ApplyModifiedProperties() || requiresReload) {
this.Clear();
this.InitializeEditor();

Expand Down

0 comments on commit 3fc55df

Please sign in to comment.