Explorar el Código

ColladaLoader2: Unsure about the transpose().

Mr.doob hace 10 años
padre
commit
6807389293
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/js/loaders/ColladaLoader2.js

+ 1 - 1
examples/js/loaders/ColladaLoader2.js

@@ -474,7 +474,7 @@ THREE.ColladaLoader.prototype = {
 
 					case 'matrix':
 						var array = parseFloats( child.textContent );
-						node.matrix.multiply( matrix.fromArray( array ).transpose() );
+						node.matrix.multiply( matrix.fromArray( array ) ); // .transpose() when Z_UP?
 						break;
 
 					case 'node':