Explorar el Código

SVGLoader: Fix bug with transforms of next neighbours nodes

yomboprime hace 6 años
padre
commit
bf8d8f671e
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      examples/js/loaders/SVGLoader.js

+ 4 - 1
examples/js/loaders/SVGLoader.js

@@ -120,7 +120,10 @@ THREE.SVGLoader.prototype = {
 
 			if ( transform ) {
 
-				currentTransform.copy( transformStack.pop() );
+				transformStack.pop();
+
+				if ( transformStack.length > 0 ) currentTransform.copy( transformStack[ transformStack.length - 1 ] );
+				else currentTransform.identity();
 
 			}