fix:1、修复bug

This commit is contained in:
2026-07-14 17:56:40 +08:00
parent bb84cea894
commit 447c7b7bc7
17 changed files with 71 additions and 77 deletions
@@ -235,7 +235,7 @@ namespace RedHotRoast
}
}
ui.btn_gold.GetChild("text_gold").text = $"{DataMgr.Coin.Value:N0}";
ui.top_money.GetChild("text_gold").text = GameHelper.Get102Str(DataMgr.Ticket.Value);
ui.top_money.GetChild("text_gold").text = $"{DataMgr.Ticket.Value:N}";
ui.btn_mult.SetClick(() =>
{
// if (!GameHelper.GetCloseResult())
@@ -344,7 +344,7 @@ namespace RedHotRoast
GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData);
DOVirtual.DelayedCall(1, () =>
{
DOVirtual.Float(0, (float)DataMgr.Ticket.Value * GameHelper.GetExchangeRateVo().Multi, 1,
DOVirtual.Float(0, (float)DataMgr.Ticket.Value , 1,
value => { ui.top_money.GetChild("text_gold").text = ((decimal)value).ToString("0.00"); });
});
}