Explorar el Código

Merge pull request #4218 from githuborwhatever/master

SceneLoader.ImportMeshAsync now sends pluginExtension to wrapped ImportMesh call
David Catuhe hace 7 años
padre
commit
42e1fb36f1
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/Loading/babylon.sceneLoader.ts

+ 2 - 1
src/Loading/babylon.sceneLoader.ts

@@ -494,7 +494,8 @@
                     });
                 }, onProgress, (scene, message, exception) => {
                     reject(exception || new Error(message));
-                });
+                },
+                pluginExtension);
             });
         }