少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-18 72f94e2e0120db00113d0934d52151c436407c5a
System/FindPrecious/FindPreciousBossBriefInfoBehaviour.cs
@@ -83,7 +83,7 @@
            findPreciousModel.bossInfoUpdateEvent -= OnBossInfoUpdate;
        }
        protected void DrawBossBaseInfo(string _icon, string _name, int _level, int _realm)
        protected virtual void DrawBossBaseInfo(string _icon, string _name, int _level, int _realm)
        {
            m_Portrait.SetSprite(_icon);
            m_Portrait.SetNativeSize();
@@ -224,13 +224,16 @@
                }
            }
            if (isRebornRightNow && !m_RefreshAtOnce.gameObject.activeInHierarchy)
            if (m_RefreshAtOnce != null)
            {
                m_RefreshAtOnce.gameObject.SetActive(true);
            }
            else if (!isRebornRightNow && m_RefreshAtOnce.gameObject.activeInHierarchy)
            {
                m_RefreshAtOnce.gameObject.SetActive(false);
                if (isRebornRightNow && !m_RefreshAtOnce.gameObject.activeInHierarchy)
                {
                    m_RefreshAtOnce.gameObject.SetActive(true);
                }
                else if (!isRebornRightNow && m_RefreshAtOnce.gameObject.activeInHierarchy)
                {
                    m_RefreshAtOnce.gameObject.SetActive(false);
                }
            }
        }