chore: remove parent check for adding meshsettings

This commit is contained in:
tliks 2024-10-26 19:05:44 +09:00
parent 07b648dcc1
commit bebdb41424

View File

@ -231,8 +231,7 @@ namespace nadena.dev.modular_avatar.core.editor
var mSInheritProbeAnchor = ModularAvatarMeshSettings.InheritMode.SetOrInherit;
var mSInheritBounds = ModularAvatarMeshSettings.InheritMode.SetOrInherit;
if (outfitRoot != null
&& meshSettings == null
&& outfitRoot.GetComponentInParent<ModularAvatarMeshSettings>() == null)
&& meshSettings == null)
{
meshSettings = Undo.AddComponent<ModularAvatarMeshSettings>(outfitRoot.gameObject);
} else if (outfitRoot != null && meshSettings != null) {