Переглянути джерело

摘星换倒计时提示文字

huangxiaoyue 1 рік тому
батько
коміт
91fcf4c839

+ 2 - 2
GameClient/Assets/Game/HotUpdate/Views/LuckyBox/LuckyBoxView.cs

@@ -353,7 +353,7 @@ namespace GFGGame
                 // TimeUtil.FormattingTime(curTime, endTime, out int num, out string str);
                 long time = endTime - curTime;
                 string strTime = time > TimeUtil.SECOND_PER_DAY * 100 ? TimeUtil.FormattingTimeTo_DDHHmm(time) : TimeUtil.FormattingTimeTo_HHmmss(time);
-                comBox.m_txtTime.text = string.Format("概率提升:剩余{0}", strTime);
+                comBox.m_txtTime.text = string.Format("轮换倒计时:剩余{0}", strTime);
                 //comBox.m_loaTitle.url = "ui://LuckyBox/zx_title_1";
             }
             else
@@ -483,7 +483,7 @@ namespace GFGGame
 
             long time = endTime - curTime;
             string strTime = time > TimeUtil.SECOND_PER_DAY * 100 ? TimeUtil.FormattingTimeTo_DDHHmm(time) : TimeUtil.FormattingTimeTo_HHmmss(time);
-            textField.asTextField.text = string.Format("概率提升:剩余{0}", strTime);
+            textField.asTextField.text = string.Format("轮换倒计时:剩余{0}", strTime);
         }
 
         private void UpdateTime(object param = null)