diff --git a/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegrator.cs b/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegrator.cs index 4e2db9cdb..81759c546 100644 --- a/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegrator.cs +++ b/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegrator.cs @@ -230,7 +230,7 @@ namespace UniGLTF.MeshUtility } } - public void Intgrate(MeshEnumerateOption onlyBlendShapeRenderers) + public void Integrate(MeshEnumerateOption onlyBlendShapeRenderers) { var mesh = new Mesh(); diff --git a/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegratorUtility.cs b/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegratorUtility.cs index 87f44f189..5938452d1 100644 --- a/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegratorUtility.cs +++ b/Assets/UniGLTF/Runtime/MeshUtility/MeshIntegratorUtility.cs @@ -87,7 +87,7 @@ namespace UniGLTF.MeshUtility } } - integrator.Intgrate(onlyBlendShapeRenderers); + integrator.Integrate(onlyBlendShapeRenderers); integrator.Result.IntegratedRenderer.transform.SetParent(go.transform, false); return integrator.Result; }