大更新

This commit is contained in:
WIN-GKKD951VVMJ\Administrator 2026-08-31 20:03:32 +08:00
parent 6cf2e385e6
commit 76cb0b5546
10 changed files with 53 additions and 68 deletions

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "909b1eba-8cbd-45c8-b6bd-743b919f7c1c",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -33274,7 +33274,7 @@
"__id__": 729
}
],
"_active": false,
"_active": true,
"_components": [],
"_prefab": null,
"_opacity": 255,

View File

@ -3943,7 +3943,7 @@ export default class MapConroler extends cc.Component {
this.scheduleOnce(() => {
nextBtn.getComponent("btnControl").setTouch(true);
this.winLevel();
}, 1.5);
}, 2);
}
// 点击新功能弹窗的返回按钮后,恢复普通胜利结算流程,不自动进入下一关。

View File

@ -339,7 +339,7 @@
"y": 300,
"z": 0
},
"questionTime": 14,
"questionTime": 6,
"id": 400
},
{

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "425b0cd1-da1a-475d-824e-9ca41237a121",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "aa0b5352-30bd-4e0a-af7e-8510efca7781",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "9659f09b-a10d-4a15-a7fc-64455bd3733b",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -1,13 +0,0 @@
{
"ver": "1.1.3",
"uuid": "4a454e74-c511-4ee8-95c5-7caf322c05ea",
"importer": "folder",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}

View File

@ -0,0 +1,24 @@
---
type: "code_change"
date: "2026-08-28T12:12:55.697086+00:00"
question: "那将winLevel触发转场调整为2.5秒 看看"
contributor: "graphify"
outcome: "useful"
source_nodes: ["Map.ts", "onNewModeConfirmed", "winLevel"]
---
# Q: 那将winLevel触发转场调整为2.5秒 看看
## Answer
Expanded from original query via graph vocab: [map, mode, level, win, delay, duration, timeout, coin, reward]. 项目图谱未覆盖前端 Map.ts,因此以当前源码核验。已将 Map.ts 的 onNewModeConfirmed 中 scheduleOnce 调用 winLevel 的延迟从 1.5 秒改为 2.5 秒,只影响 NewMode 确认后的自动下一关,不影响普通结算。git diff --check 通过。调整后获得金币区域约可显示 1.5 秒;飞金币仍因 autoNextAfterNewMode 早退而不播放,本次未改该逻辑。
## Outcome
- Signal: useful
## Source Nodes
- Map.ts
- onNewModeConfirmed
- winLevel

View File

@ -0,0 +1,26 @@
---
type: "code_change"
date: "2026-08-28T12:16:53.583570+00:00"
question: "NewMode winLevel 自动转场延迟最终值"
contributor: "graphify"
outcome: "corrected"
correction: "最终延迟为2秒,不是2.5秒。"
source_nodes: ["Map.ts", "onNewModeConfirmed", "winLevel"]
---
# Q: NewMode winLevel 自动转场延迟最终值
## Answer
最终按用户确认,将 Map.ts 的 onNewModeConfirmed 中 scheduleOnce 延迟由 2.5 秒改为 2 秒;只影响 NewMode 自动转场。git diff --check 通过。
## Outcome
- Signal: corrected
- Correction: 最终延迟为2秒,不是2.5秒。
## Source Nodes
- Map.ts
- onNewModeConfirmed
- winLevel