소스 검색

Update SVGLoader.js

BTEVC 6 년 전
부모
커밋
dfdf924253
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/js/loaders/SVGLoader.js

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

@@ -701,7 +701,7 @@ THREE.SVGLoader.prototype = {
 			if ( node.style.fill !== '' ) style.fill = node.style.fill;
 
 			if ( node.hasAttribute( 'fill-opacity' ) ) style.fillOpacity = node.getAttribute( 'fill-opacity' );
-      if ( node.style.fillOpacity !== '' ) style.fillOpacity = node.style.fillOpacity;
+			if ( node.style.fillOpacity !== '' ) style.fillOpacity = node.style.fillOpacity;
 
 			return style;