Skip to content

Commit

Permalink
Merge ddbcc15 into ecce3a3
Browse files Browse the repository at this point in the history
  • Loading branch information
cptbtptpbcptdtptp authored Mar 22, 2023
2 parents ecce3a3 + ddbcc15 commit 2a64565
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class SceneParser {
}
}

private _parseComponents() {
private _parseComponents(): Promise<any[]> {
const entitiesConfig = this.context.originalData.entities;
const entityMap = this.context.entityMap;

Expand All @@ -103,6 +103,7 @@ export class SceneParser {
promises.push(promise);
}
}
return Promise.all(promises);
}

private _clearAndResolveScene() {
Expand Down

0 comments on commit 2a64565

Please sign in to comment.