Browse Source

GLTFLoader: Fixed indentation for json variable declaration

Antonio Gomez 7 years ago
parent
commit
031c8aa566
1 changed files with 1 additions and 1 deletions
  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 ) {