[update]更新

1.更新奖励货币符号为RM
2.更新再来一次文字提示
This commit is contained in:
2026-04-08 17:30:45 +08:00
parent ca64c9bccf
commit b159e6fd5d
16 changed files with 137 additions and 136 deletions

View File

@@ -122,7 +122,7 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"x": -1557.975,
"y": 0,
"z": 0
},
@@ -33045,7 +33045,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 0,
"width": 260,
"height": 63
},
"_anchorPoint": {
@@ -33084,11 +33084,11 @@
"_string": "",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 50,
"_actualFontSize": 51,
"_fontSize": 50,
"_fontFamily": "Arial",
"_lineHeight": 50,
"_overflow": 0,
"_overflow": 2,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
@@ -36048,7 +36048,7 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -50,
"x": 20,
"y": -48,
"z": 0
},
@@ -36252,7 +36252,7 @@
"_contentSize": {
"__type__": "cc.Size",
"width": 931,
"height": 140
"height": 139
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -36441,7 +36441,7 @@
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 160,
"x": 64,
"y": 0,
"z": 0
},
@@ -36644,8 +36644,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 713,
"height": 64
"width": 637,
"height": 60
},
"_anchorPoint": {
"__type__": "cc.Vec2",

View File

@@ -529,8 +529,8 @@ export class PageMain extends BaseView {
}, 3.2);
let earn_str = this._game_data.win_coin > 0 ? "+" + this._game_data.win_coin : this._game_data.win_coin
this.lab_earn.string = earn_str
this.lab_earn.color = this._game_data.win_coin > 0 ? new Color(255, 91, 69) : new Color(96, 255, 38)
this.lab_earn.string = this._game_data.tier == "T5" ? Tools.GetLocalized("再来一次") : earn_str
this.lab_earn.color = this._game_data.win_coin >= 0 ? new Color(255, 91, 69) : new Color(96, 255, 38)
let blinkCount = 0;
const blink = () => {