浏览代码

ColladaLoader: Removed usage of alpha maps.

Mugen87 7 年之前
父节点
当前提交
73a916570d
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      examples/js/loaders/ColladaLoader.js

+ 2 - 1
examples/js/loaders/ColladaLoader.js

@@ -1574,7 +1574,8 @@ THREE.ColladaLoader.prototype = {
 
 				if ( transparent.data.texture ) {
 
-					material.alphaMap = getTexture( transparent.data.texture );
+					// we do not set an alpha map (see #13792)
+
 					material.transparent = true;
 
 				} else {