diff --git a/src/core/BufferGeometry.js b/src/core/BufferGeometry.js index d8b4ff187cde1540a530b1e2594850f5cc28b73f..0cae38c1071a6bee0b7aff80bc456bf43dc7a1ec 100644 --- a/src/core/BufferGeometry.js +++ b/src/core/BufferGeometry.js @@ -891,6 +891,7 @@ BufferGeometry.prototype = Object.assign( Object.create( EventDispatcher.prototy var array = attribute.array; var itemSize = attribute.itemSize; + var normalized = attribute.normalized; var array2 = new array.constructor( indices.length * itemSize ); @@ -908,7 +909,7 @@ BufferGeometry.prototype = Object.assign( Object.create( EventDispatcher.prototy } - return new BufferAttribute( array2, itemSize ); + return new BufferAttribute( array2, itemSize, normalized ); }