2
0
Эх сурвалжийг харах

Merge branch 'master' into qt_assimp_viewer

smalcom 7 жил өмнө
parent
commit
5b23492421
1 өөрчлөгдсөн 7 нэмэгдсэн , 4 устгасан
  1. 7 4
      code/glTF2Asset.inl

+ 7 - 4
code/glTF2Asset.inl

@@ -1216,12 +1216,15 @@ inline void Asset::Load(const std::string& pFile, bool isBinary)
 
     // Read the "scene" property, which specifies which scene to load
     // and recursively load everything referenced by it
+    unsigned int sceneIndex = 0;
     if (Value* scene = FindUInt(doc, "scene")) {
-        unsigned int sceneIndex = scene->GetUint();
-
-        Ref<Scene> s = scenes.Retrieve(sceneIndex);
+        sceneIndex = scene->GetUint();
+    }
 
-        this->scene = s;
+    if (Value* scenesArray = FindArray(doc, "scenes")) {
+        if (sceneIndex < scenesArray->Size()) {
+            this->scene = scenes.Retrieve(sceneIndex);
+        }
     }
 
     // Clean up