Merge pull request #2809 from cpetry/master

Fixed #2808 - on empty submeshes still continue to process all remain…
This commit is contained in:
ousttrue
2026-06-29 09:57:39 +09:00
committed by GitHub

View File

@@ -180,7 +180,8 @@ namespace UniGLTF
if (submeshIndices.Length == 0)
{
// https://github.com/vrm-c/UniVRM/issues/664
break;
// Skip empty submesh and continue with remaining submeshes
continue;
}
else if (submeshIndices.Length < 3)
{