feat(关卡系统): 添加关卡解锁和免广告功能

- 在MissionComp和SCDSystem中添加stop_mon_action检查逻辑
- 修改SingletonModuleComp数据结构,添加noStop和unlockCoin字段
- 为MissionCardComp添加金币解锁和免广告功能
- 调整ubtns.plist的边框值
This commit is contained in:
walkpan
2026-01-06 19:47:11 +08:00
parent bb28492550
commit 0febe02ecc
6 changed files with 4322 additions and 986 deletions

View File

@@ -31,6 +31,7 @@ export class SkillCDSystem extends ecs.ComblockSystem implements ecs.ISystemUpda
if (!skills) return;
const attrsCom = e.get(HeroAttrsComp);
if (!attrsCom) return;
if(smc.mission.stop_mon_action) return;
if (attrsCom.isStun() || attrsCom.isFrost()) { // 眩晕和冰冻状态不更新CD
return;
}