We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 472dc48 commit 2229521Copy full SHA for 2229521
1 file changed
Packages/com.unity.cloud.gltfast/Runtime/Scripts/Export/GltfWriter.cs
@@ -734,9 +734,9 @@ void LogSummary(long jsonLength, long bufferLength)
734
sb.AppendFormat("{0} bytes JSON + {1} bytes buffer", jsonLength, bufferLength);
735
if (m_Gltf != null) {
736
sb.AppendFormat(", {0} nodes", m_Gltf.Nodes?.Count ?? 0);
737
- sb.AppendFormat(" ,{0} meshes", m_Gltf.meshes?.Length ?? 0);
738
- sb.AppendFormat(" ,{0} materials", m_Gltf.Materials?.Count ?? 0);
739
- sb.AppendFormat(" ,{0} images", m_Gltf.Images?.Count ?? 0);
+ sb.AppendFormat(", {0} meshes", m_Gltf.meshes?.Length ?? 0);
+ sb.AppendFormat(", {0} materials", m_Gltf.Materials?.Count ?? 0);
+ sb.AppendFormat(", {0} images", m_Gltf.Images?.Count ?? 0);
740
}
741
m_Logger?.Info(sb.ToString());
742
#endif
0 commit comments