Explorar el Código

* SceneLoader ImportMeshAsync now appropriately ushers its pluginExtension argument to the wrapped ImportMesh call

Eric Brooks hace 7 años
padre
commit
534a0ce9e2
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);
             });
         }