(taskIdentifier: string)
| 1347 | } |
| 1348 | |
| 1349 | getLoadingProgress(taskIdentifier: string): float { |
| 1350 | return taskIdentifier === this.currentLoadingTaskIdentifier |
| 1351 | ? this.currentTaskProgress |
| 1352 | : this.areAssetsLoaded(taskIdentifier) |
| 1353 | ? 1 |
| 1354 | : 0; |
| 1355 | } |
| 1356 | |
| 1357 | clear() { |
| 1358 | this.loadingStates.clear(); |
no test coverage detected