Răsfoiți Sursa

GLTFExporter: Clean up.

linbingquan 4 ani în urmă
părinte
comite
2da766e818

+ 1 - 1
examples/js/exporters/GLTFExporter.js

@@ -1791,7 +1791,7 @@ THREE.GLTFExporter.prototype = {
 
 				}
 
-				if ( ! isIdentityMatrix( object.matrix ) ) {
+				if ( isIdentityMatrix( object.matrix ) === false ) {
 
 					gltfNode.matrix = object.matrix.elements;
 

+ 1 - 1
examples/jsm/exporters/GLTFExporter.js

@@ -1811,7 +1811,7 @@ GLTFExporter.prototype = {
 
 				}
 
-				if ( ! isIdentityMatrix( object.matrix ) ) {
+				if ( isIdentityMatrix( object.matrix ) === false ) {
 
 					gltfNode.matrix = object.matrix.elements;