Browse Source

Merge pull request #4218 from githuborwhatever/master

SceneLoader.ImportMeshAsync now sends pluginExtension to wrapped ImportMesh call
David Catuhe 7 years ago
parent
commit
42e1fb36f1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Loading/babylon.sceneLoader.ts

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

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