|
|
@@ -3153,6 +3153,9 @@ class GLTFParser {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ // Ignore normalized since we copy from sparse
|
|
|
+ bufferAttribute.normalized = false;
|
|
|
+
|
|
|
for ( let i = 0, il = sparseIndices.length; i < il; i ++ ) {
|
|
|
|
|
|
const index = sparseIndices[ i ];
|
|
|
@@ -3165,6 +3168,8 @@ class GLTFParser {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ bufferAttribute.normalized = normalized;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
return bufferAttribute;
|