From 56f7f843a5578497775c4f06a56571d5dd32bfb3 Mon Sep 17 00:00:00 2001 From: bansomin Date: Sat, 28 Oct 2023 00:10:31 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E5=BE=84=E6=97=A0=E9=9C=80=E5=8F=A6?= =?UTF-8?q?=E5=8A=A0=E2=80=9C/=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/script/game/initialize/view/Hot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/script/game/initialize/view/Hot.ts b/assets/script/game/initialize/view/Hot.ts index 7102974..8aa0955 100644 --- a/assets/script/game/initialize/view/Hot.ts +++ b/assets/script/game/initialize/view/Hot.ts @@ -66,7 +66,7 @@ export class Hot { this.showSearchPath(); this.manifest = res.nativeUrl; - this.storagePath = `${native.fileUtils.getWritablePath()}/oops_framework_remote`; + this.storagePath = `${native.fileUtils.getWritablePath()}oops_framework_remote`; this.assetsMgr = new native.AssetsManager(this.manifest, this.storagePath, (versionA, versionB) => { console.log("【热更新】客户端版本: " + versionA + ', 当前最新版本: ' + versionB); this.options?.onVersionInfo && this.options.onVersionInfo({ local: versionA, server: versionB }); -- Gitee