Merge pull request #2240 from ousttrue/fix/normalize_blendshape_with_root_scaling

hierarchy にスケーリングがある場合の blend shape の正規化修正
This commit is contained in:
ousttrue 2024-02-08 20:50:33 +09:00 committed by GitHub
commit ffcf2095ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -264,7 +264,7 @@ namespace UniGLTF.MeshUtility
}
else
{
vertices[j] = m.MultiplyPoint(vertices[j]) - meshVertices[j];
vertices[j] = m.MultiplyPoint(vertices[j] - meshVertices[j]);
}
}