소스 검색

GLTFLoader: Fixed indentation for json variable declaration

Antonio Gomez 7 년 전
부모
커밋
031c8aa566
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/js/loaders/GLTFLoader.js

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

@@ -91,7 +91,7 @@ THREE.GLTFLoader = ( function () {
 
 			}
 
-				var json = JSON.parse( content );
+			var json = JSON.parse( content );
 
 			if ( json.asset === undefined || json.asset.version[ 0 ] < 2 ) {