少年修仙传客户端代码仓库
client_Wu Xijin
2018-09-26 023314a76d76fb64e325d55375db4806451b33ce
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
5个文件已修改
114 ■■■■ 已修改文件
System/BlastFurnace/GetEquipPathTips.cs 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/BlastFurnace/GetEquipPathWin.cs 27 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/Logic/EquipTip.cs 29 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/Logic/ItemTipsModel.cs 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Store/Logic/BuyEquipTip.cs 27 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/BlastFurnace/GetEquipPathTips.cs
@@ -454,7 +454,29 @@
            if (itemAttrData.isPreview)
            {
                legendCntPreview.gameObject.SetActive(true);
                legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                switch (itemAttrData.itemConfig.EquipPlace)
                {
                    case 1:
                    case 2:
                    case 3:
                    case 4:
                    case 5:
                    case 6:
                    case 7:
                    case 8:
                    case 9:
                    case 10:
                    case 12:
                        legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                        break;
                    case 101:
                    case 102:
                    case 103:
                    case 104:
                    case 105:
                        legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                        break;
                }
            }
            else
            {
System/BlastFurnace/GetEquipPathWin.cs
@@ -439,13 +439,28 @@
            if (itemAttrData.isPreview)
            {
                legendCntPreview.gameObject.SetActive(true);
                if (itemAttrData.packType != PackType.rptDogzItem)
                switch (itemAttrData.itemConfig.EquipPlace)
                {
                    legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                }
                else
                {
                    legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                    case 1:
                    case 2:
                    case 3:
                    case 4:
                    case 5:
                    case 6:
                    case 7:
                    case 8:
                    case 9:
                    case 10:
                    case 12:
                        legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                        break;
                    case 101:
                    case 102:
                    case 103:
                    case 104:
                    case 105:
                        legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                        break;
                }
            }
            else
System/KnapSack/Logic/EquipTip.cs
@@ -536,19 +536,32 @@
            legendAttr.SetActive(true);
            legendTitleText.text = Language.Get("EquipWin_LegendPropObj_Text_1");
            legendAttrDes.text = itemTipsModel.GetLegendAttr(itemAttrData);
            if (itemAttrData.isPreview)
            {
                legendCntPreview.gameObject.SetActive(true);
                if(itemAttrData.packType != PackType.rptDogzItem)
                switch (itemAttrData.itemConfig.EquipPlace)
                {
                    legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                    case 1:
                    case 2:
                    case 3:
                    case 4:
                    case 5:
                    case 6:
                    case 7:
                    case 8:
                    case 9:
                    case 10:
                    case 12:
                        legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                        break;
                    case 101:
                    case 102:
                    case 103:
                    case 104:
                    case 105:
                        legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                        break;
                }
                else
                {
                    legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                }
            }
            else
            {
System/KnapSack/Logic/ItemTipsModel.cs
@@ -1948,9 +1948,12 @@
                            SetDogzEquipLegendAttrPreview(out legendIdlist, out legendValuelist);
                            break;
                    }
                    if (legendIdlist.Count == legendValuelist.Count)
                    if(legendIdlist != null && legendValuelist != null)
                    {
                        SetLegendData(legendIdlist, legendValuelist);
                        if (legendIdlist.Count == legendValuelist.Count)
                        {
                            SetLegendData(legendIdlist, legendValuelist);
                        }
                    }
                }
                else
System/Store/Logic/BuyEquipTip.cs
@@ -503,13 +503,28 @@
            if (itemAttrData.isPreview)
            {
                legendCntPreview.gameObject.SetActive(true);
                if (itemAttrData.packType != PackType.rptDogzItem)
                switch (itemAttrData.itemConfig.EquipPlace)
                {
                    legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                }
                else
                {
                    legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                    case 1:
                    case 2:
                    case 3:
                    case 4:
                    case 5:
                    case 6:
                    case 7:
                    case 8:
                    case 9:
                    case 10:
                    case 12:
                        legendCntPreview.text = itemTipsModel.GetEquipLegendAttrCntPreview(itemAttrData);
                        break;
                    case 101:
                    case 102:
                    case 103:
                    case 104:
                    case 105:
                        legendCntPreview.text = itemTipsModel.GetDogzLegendAttrCntPreview(itemAttrData);
                        break;
                }
            }
            else