From b96add6dd2b36ff120c4b6e7852467a089fbdd15 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 16 Jun 2021 17:05:44 +0900 Subject: [PATCH] remove debug log --- Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/BlendShapeExporter.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/BlendShapeExporter.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/BlendShapeExporter.cs index 449b9e882..0f4a5e1da 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/BlendShapeExporter.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/BlendShapeExporter.cs @@ -44,9 +44,6 @@ namespace UniGLTF var positionAccessorIndex = -1; if (sparseIndices.Length > 0) { -#if VRM_DEVELOP - Debug.LogFormat("Sparse {0}/{1}", sparseIndices.Length, positions.Length); -#endif var sparseIndicesViewIndex = gltf.ExtendBufferAndGetViewIndex(gltfBuffer, sparseIndices); positionAccessorIndex = gltf.ExtendSparseBufferAndGetAccessorIndex(gltfBuffer, accessorCount, positions, sparseIndices, sparseIndicesViewIndex, glBufferTarget.NONE); }