@gltf-transform/core
Advanced tools
Comparing version 4.1.0 to 4.1.1
{ | ||
"name": "@gltf-transform/core", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"repository": "github:donmccurdy/glTF-Transform", | ||
@@ -54,3 +54,3 @@ "homepage": "https://gltf-transform.dev/", | ||
}, | ||
"gitHead": "5cebdbbaf10b2d8d3e2a410ad1360d23dfe4aaff" | ||
"gitHead": "3b5b616183bc60416e5ab72af621033143b15c26" | ||
} |
@@ -486,3 +486,5 @@ import { | ||
bufferByteLength += result.byteLength; | ||
buffers.push(...result.buffers); | ||
for (const buffer of result.buffers) { | ||
buffers.push(buffer); | ||
} | ||
} else if (usage === BufferViewUsage.ARRAY_BUFFER) { | ||
@@ -495,3 +497,5 @@ // (2) Non-interleaved vertex attributes. | ||
bufferByteLength += result.byteLength; | ||
buffers.push(...result.buffers); | ||
for (const buffer of result.buffers) { | ||
buffers.push(buffer); | ||
} | ||
} | ||
@@ -502,3 +506,5 @@ } else if (usage === BufferViewUsage.SPARSE) { | ||
bufferByteLength += result.byteLength; | ||
buffers.push(...result.buffers); | ||
for (const buffer of result.buffers) { | ||
buffers.push(buffer); | ||
} | ||
} else if (usage === BufferViewUsage.ELEMENT_ARRAY_BUFFER) { | ||
@@ -509,3 +515,5 @@ // (4) Indices. | ||
bufferByteLength += result.byteLength; | ||
buffers.push(...result.buffers); | ||
for (const buffer of result.buffers) { | ||
buffers.push(buffer); | ||
} | ||
} else { | ||
@@ -515,3 +523,5 @@ // (5) Other. | ||
bufferByteLength += result.byteLength; | ||
buffers.push(...result.buffers); | ||
for (const buffer of result.buffers) { | ||
buffers.push(buffer); | ||
} | ||
} | ||
@@ -518,0 +528,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1998904
24220