Exemple #1
0
        public void onSelectedChanged(bool bActive)
        {
            if (!bActive)
            {
                itemText.color = m_defaultColor;

                // 隐藏自定义频道窗口
                if (m_ChannelGroupType == ChatChannelGroupType.ChatChannel_Diy)
                {
                    m_wndView.hideDiyChannelWnd();
                }
            }
            else
            {
                itemText.color = m_hightLightColor;
                LogicDataCenter.chatMessageManager.SetChannelMask(m_nChannelMask);
            }
        }