少年修仙传客户端代码仓库
client_Wu Xijin
2019-03-27 28edd1a6d6df7809a25634a5816a2f789c7ba36f
3335 装备界面0星不显示星级
1个文件已修改
2 ■■■ 已修改文件
System/Equip/EquipSlotBehaviour.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Equip/EquipSlotBehaviour.cs
@@ -109,7 +109,7 @@
                    var starLevel = starModel.GetEquipStarLevel(slot.equipPosition);
                    m_Star.gameObject.SetActive(true);
                    m_Star.text = starLevel > 1 ? string.Format("{0}星", starLevel) : "";
                    m_Star.text = starLevel >= 1 ? string.Format("{0}星", starLevel) : "";
                }
            }
        }