From c115ed87f1ece8abdad615141c6d67327520abb0 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 8 Feb 2024 16:47:08 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=86=E3=83=BC=E3=82=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/UniGLTF/Runtime/MeshUtility/MeshFreezer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UniGLTF/Runtime/MeshUtility/MeshFreezer.cs b/Assets/UniGLTF/Runtime/MeshUtility/MeshFreezer.cs index 7cd84a92af..3bd3c45e97 100644 --- a/Assets/UniGLTF/Runtime/MeshUtility/MeshFreezer.cs +++ b/Assets/UniGLTF/Runtime/MeshUtility/MeshFreezer.cs @@ -264,7 +264,7 @@ private static void CopyBlendShapes(SkinnedMeshRenderer src, Mesh srcMesh, Mesh } else { - vertices[j] = m.MultiplyPoint(vertices[j]) - meshVertices[j]; + vertices[j] = m.MultiplyPoint(vertices[j] - meshVertices[j]); } }