少年修仙传客户端代码仓库
client_linchunjie
2018-12-24 0787881814cca440adc0a562894f207f96c1c6df
5367 【前端】【1.4】聚魂功能开发
1个文件已修改
6 ■■■■ 已修改文件
System/GatheringSoul/GatherSoulTotalPropertyWin.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/GatheringSoul/GatherSoulTotalPropertyWin.cs
@@ -85,10 +85,10 @@
                    m_Propertys[index].gameObject.SetActive(true);
                    m_Propertys[index].DisplayUpper(propertySorts[i], displayPropertyDict[propertySorts[i]]);
                }
                else if (index < m_ClonePropertys.Count)
                else if (index - m_Propertys.Length < m_ClonePropertys.Count)
                {
                    m_ClonePropertys[index].gameObject.SetActive(true);
                    m_ClonePropertys[index].DisplayUpper(propertySorts[i], displayPropertyDict[propertySorts[i]]);
                    m_ClonePropertys[index - m_Propertys.Length].gameObject.SetActive(true);
                    m_ClonePropertys[index - m_Propertys.Length].DisplayUpper(propertySorts[i], displayPropertyDict[propertySorts[i]]);
                }
                index++;
            }