fix:1、修复bug
This commit is contained in:
@@ -408,7 +408,7 @@ namespace RedHotRoast
|
||||
{
|
||||
decimal coin = DataMgr.Ticket.Value;
|
||||
|
||||
coin *= (decimal)GameHelper.GetExchangeRateVo().Multi;
|
||||
// coin *= (decimal)GameHelper.GetExchangeRateVo().Multi;
|
||||
if (ui.com_money is com_money comMoney) comMoney.text_gold.text = coin.ToString("0.00");
|
||||
}
|
||||
|
||||
|
||||
@@ -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"); });
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user