fix: heuristic matching is performed even when an exact hips candidate is found (#922)

This commit is contained in:
bd_ 2024-07-28 16:56:21 -07:00 committed by GitHub
parent 9c96ae2010
commit b9b7677e3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -482,7 +482,7 @@ namespace nadena.dev.modular_avatar.core.editor
}
}
if (outfitHips != null) break;
if (outfitHips != null) return true; // found an exact match, bail outgit
}
hipsCandidates.Add(avatarHips.name);