MCPcopy Create free account
hub / github.com/Crain99/cc-reverse / processSubpackages

Function processSubpackages

src/core/resourceProcessor.js:156–168  ·  view source on GitHub ↗

* 处理子包 * @returns {Promise }

()

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected