少年修仙传客户端代码仓库
client_linchunjie
2019-06-13 1401ea833c43a881878e05f159fb6327ad65f3c7
3335 月卡投资倍数修改
3个文件已修改
6 ■■■■■ 已修改文件
System/Skill/TreasureSkillWin.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Vip/VipInvest/MonthWeekInvestCell.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Vip/VipInvest/MonthWeekInvestModel.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Skill/TreasureSkillWin.cs
@@ -21,6 +21,7 @@
        [SerializeField] Button m_SkillExpertBtn;
        [SerializeField] SkillExpertWidget m_SkillExpert;
        [SerializeField] RedpointBehaviour m_SelectRedpoint;
        [SerializeField] SkillExpertBehaviour[] m_SkillExpertBehaviours;
        [SerializeField] Button m_LevelUp;
@@ -172,6 +173,7 @@
            if (model.TryGetSkill(model.selectSkill, out skill))
            {
                m_LevelRedpoint.redpointId = skill.levelUpRedpoint.id;
                m_SelectRedpoint.redpointId = skill.expertSelectRedpoint.id;
                var config = skill.GetSkillConfig(skill.level);
                if (config == null)
System/Vip/VipInvest/MonthWeekInvestCell.cs
@@ -52,7 +52,7 @@
                if ((int)rate != lastRate)
                {
                    m_Income.text = Language.Get("MonthWeekIncomeRate", rate);
                    m_Income.text = Language.Get("MonthWeekIncomeRate", ((int)(rate * 10) / 10.0f).ToString("0.#"));
                }
                else
                {
System/Vip/VipInvest/MonthWeekInvestModel.cs
@@ -252,7 +252,7 @@
                    }
                }
            }
            return (float)Math.Round((float)income / money, 2);
            return (float)income / money;
        }
        public bool TryGetItems(int type, int id, out List<Item> items)