diff --git a/src/components/gltf-model-plus.js b/src/components/gltf-model-plus.js index b7f48bb579b96baccc8d89b30c68017ff76687b3..a9cef5ae4ae2352e3909a741f954f82126276998 100644 --- a/src/components/gltf-model-plus.js +++ b/src/components/gltf-model-plus.js @@ -191,15 +191,17 @@ function cachedLoadGLTF(src, basePath, preferredTechnique, onProgress) { gltfLoader.load(src, resolve, onProgress, reject); }); } - return GLTFCache[src] - .then(gltf => { - return new Promise((resolve, reject) => { - window.setTimeout(() => { - resolve(gltf); - }, 2000); - }); - }) - .then(cloneGltf); + return ( + GLTFCache[src] + // .then(gltf => { + // return new Promise((resolve, reject) => { + // window.setTimeout(() => { + // resolve(gltf); + // }, 2000); + // }); + // }) + .then(cloneGltf) + ); } /**