* 处理子包 * @returns {Promise }
()
| 154 | } |
| 155 | } |
| 156 | |
| 157 | if (global.verbose) { |
| 158 | logger.debug( |
| 159 | `settings index: uuids=${this._uuidList.length}, packs=${Object.keys(this._packedMap).length}, rawAssets=${this._rawAssetMap.size}`, |
| 160 | ); |
| 161 | } |
| 162 | }, |
| 163 | |
| 164 | /** |
| 165 | * packedAssets / scenes 里的 uuid 引用:数字或数字字符串 → uuids[i] |
| 166 | */ |
| 167 | expandUuidRef(ref) { |
| 168 | if (ref == null) return null; |
| 169 | if (typeof ref === 'number') { |
| 170 | return this._uuidList[ref] != null ? this._uuidList[ref] : String(ref); |
| 171 | } |
nothing calls this directly
no outgoing calls
no test coverage detected