()
| 5978 | return asset; |
| 5979 | } |
| 5980 | removeAll() { |
| 5981 | for (let path in this.cache.assets) { |
| 5982 | let asset = this.cache.assets[path]; |
| 5983 | if (asset.dispose) asset.dispose(); |
| 5984 | } |
| 5985 | this.cache.assets = {}; |
| 5986 | this.cache.assetsLoaded = {}; |
| 5987 | this.cache.assetsRefCount = {}; |
| 5988 | } |
| 5989 | isLoadingComplete() { |
| 5990 | return this.toLoad == 0; |
| 5991 | } |