diff --git a/src/materials/Texture.js b/src/materials/Texture.js index 19f6f523..95933749 100644 --- a/src/materials/Texture.js +++ b/src/materials/Texture.js @@ -27,12 +27,7 @@ THREE.Texture.prototype = { clone: function () { - var clonedTexture = new THREE.Texture( this.image, this.mapping, this.wrapS, this.wrapT, this.magFilter, this.minFilter ); - - clonedTexture.offset.copy( this.offset ); - clonedTexture.repeat.copy( this.repeat ); - - return clonedTexture; + return new THREE.Texture( this.image, this.mapping, this.wrapS, this.wrapT, this.magFilter, this.minFilter ); },