This commit is contained in:
COMPUTER\EDY 2026-08-14 19:15:36 +08:00
parent 30058840ab
commit 65f6326b14
4 changed files with 4 additions and 4 deletions

View File

@ -6421,7 +6421,7 @@ export default class MapConroler extends cc.Component {
} }
} }
} }
this.numberToImageNodes2(cc.fx.GameConfig.GM_INFO.winStreak, 10, 5, "", winStreak.getChildByName("number"), true); this.numberToImageNodes2(Math.min(cc.fx.GameConfig.GM_INFO.winStreak, 10), 10, 5, "", winStreak.getChildByName("number"), true);
} }
//创建 入职界面 //创建 入职界面

View File

@ -311,7 +311,7 @@ export class GameConfig {
vibrateOpen: true, //震动 vibrateOpen: true, //震动
coinnum: 0, //每局的金币数 coinnum: 0, //每局的金币数
paid_user: false, //是否是付费用户 paid_user: false, //是否是付费用户
version: "2.0.08", //版本号 version: "2.0.09", //版本号
shushu_DistinctId: "", //数数访客ID shushu_DistinctId: "", //数数访客ID
shushu_AccountId: "", //数数账号ID shushu_AccountId: "", //数数账号ID
uid: "", //用户和后端唯一id uid: "", //用户和后端唯一id

View File

@ -452,7 +452,7 @@ var GameTool = {
// cc.fx.StorageMessage.setStorage("level", levelInfo); // cc.fx.StorageMessage.setStorage("level", levelInfo);
// } // }
let max_level = 3000; let max_level = 1880;
if (cc.fx.GameConfig.GM_INFO.level > (max_level - 1)) { if (cc.fx.GameConfig.GM_INFO.level > (max_level - 1)) {
cc.fx.GameConfig.GM_INFO.level = max_level; cc.fx.GameConfig.GM_INFO.level = max_level;

View File

@ -66,7 +66,7 @@ export default class WinStreak extends cc.Component {
} }
} }
} }
this.numberToImageNodes2(cc.fx.GameConfig.GM_INFO.winStreak, 10, 5, "", this.node.getChildByName("number"), true); this.numberToImageNodes2(Math.min(cc.fx.GameConfig.GM_INFO.winStreak, 10), 10, 5, "", this.node.getChildByName("number"), true);
} }
//入场动画 //入场动画
setAction() { setAction() {