Skip to content

Commit

Permalink
fix: コンポーネントインデックスの判定が逆になっていた問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
pspkurara committed Nov 6, 2020
1 parent 67b335c commit 4436e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packages/uGUI-Skinner/Editor/SkinnerEditorUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static ComponentInfos GetComponentInfos(Type type)
}
else
{
cInfo.allowMultiplyComponent = IsDefinedDisallowMultiplyComponent(type);
cInfo.allowMultiplyComponent = !IsDefinedDisallowMultiplyComponent(type);
}
}
componentInfos.Add(type, cInfo);
Expand Down

0 comments on commit 4436e7a

Please sign in to comment.