I'm currently using `Multiple ModelUtil.js` to handle multiple models. (https://github.com/yiskang/MultipleModelUtil)
Currently, the models are loaded sequentially, which causes performance delays when there are many models. (model count is 41)
I want to process (or load) them **in parallel** to reduce the total loading time.
I attempted to wrap the calls in
Promise.all, but it did not seem to run them in true parallel.Tried using
async/awaitwithMultipleModelUtil.loadModel, but the function itself is callback-based.Looked for options in
MultipleModelUtilto enable parallel or asynchronous loading, but couldn't find them.
MultipleModelUtil.jsis not designed for loading models in parallel, because the origin-to-origin alignment relies on the transform from the first loaded model. To load models in parallel, please refer to the information provided by Adam. Or you can forkMultipleModelUtil.jsand changepromisesInSequenceto resolve promises in parallel.