瀏覽代碼

CubeTexture: Reverted flipY in clone. Texture is already cloning it. See #6838.

Mr.doob 10 年之前
父節點
當前提交
45941c6830
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      src/textures/CubeTexture.js

+ 0 - 1
src/textures/CubeTexture.js

@@ -23,7 +23,6 @@ THREE.CubeTexture.clone = function ( texture ) {
 	THREE.Texture.prototype.clone.call( this, texture );
 
 	texture.images = this.images;
-	texture.flipY = this.flipY;
 
 	return texture;