少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-24 26c92e719b72b6faa4b5d9188654975ad7fde02d
2466  【前端】分包优化
1个文件已修改
10 ■■■■ 已修改文件
System/AssetVersion/InGameDownLoadProgress.cs 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/AssetVersion/InGameDownLoadProgress.cs
@@ -107,11 +107,15 @@
        {
            m_ProgressSlider.fillAmount = InGameDownLoad.Instance.progress;
            if (m_ProgressText != null)
            if (InGameDownLoad.Instance.state == InGameDownLoad.State.DownLoad)
            {
                var progress = Mathf.RoundToInt(InGameDownLoad.Instance.progress * 100);
                m_ProgressText.text = StringUtility.Contact(Mathf.Clamp(progress, 0, 99), "%");
                if (m_ProgressText != null)
                {
                    var progress = Mathf.RoundToInt(InGameDownLoad.Instance.progress * 100);
                    m_ProgressText.text = StringUtility.Contact(Mathf.Clamp(progress, 0, 99), "%");
                }
            }
        }
        private void OpenInGameDownloadWin()