Fixed cloning BufferAttribute
@@ -331,7 +331,7 @@ BufferAttribute.prototype = {
clone: function () {
- return new this.constructor().copy( this );
+ return new this.constructor( this.array, this.itemSize ).copy( this );
}