Pārlūkot izejas kodu

Check asset existence to detect glTF version

Takahiro 8 gadi atpakaļ
vecāks
revīzija
6bf789c618
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      examples/js/loaders/GLTF2Loader.js

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

@@ -79,7 +79,7 @@ THREE.GLTF2Loader = ( function () {
 
 			var json = JSON.parse( content );
 
-			if ( json.asset.version[0] < 2 ) {
+			if ( json.asset === undefined || json.asset.version[ 0 ] < 2 ) {
 
 				onError( new Error( 'THREE.GLTF2Loader: Legacy glTF detected. Use THREE.GLTFLoader instead.' ) );
 				return;