We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a633bf commit 99c5eafCopy full SHA for 99c5eaf
src/Viewer.js
@@ -720,8 +720,9 @@ export class Viewer {
720
let fullDownloadPromise = this.loadSplatSceneToSplatBuffer(path, splatAlphaRemovalThreshold,
721
onProgress, true, onStreamedSectionProgress, format);
722
723
- const firstStreamedSectionBuildPromise = new AbortablePromise((resolver) => {
+ const firstStreamedSectionBuildPromise = new AbortablePromise((resolver, rejecter) => {
724
firstStreamedSectionBuildResolver = resolver;
725
+ firstStreamedSectionBuildRejecter = rejecter;
726
const clearDownloadPromise = () => {
727
delete this.downloadPromisesToAbort[fullDownloadPromise.id];
728
};
0 commit comments