Exemple #1
0
	private void MemberSortBtnDelegate( ref POINTER_INFO ptr)
	{
		if( ptr.evt == POINTER_INFO.INPUT_EVENT.TAP)
		{
			AsSoundManager.Instance.PlaySound( "Sound/Interface/S6002_EFF_Button", Vector3.zero, false);
			m_eSortType = ePARTYLISTSORT.ePARTYLISTSORT_MAXUSER;
			AsPartyManager.Instance.MaxUserSortList();
			AsPartyManager.Instance.PartyUI.PartyListDlg.SetPartyList();
			m_SortBtn.Text = AsTableManager.Instance.GetTbl_String(1945);
			SetVisible( m_SortRadioPanel, false);
			
			m_SortBtn.gameObject.SetActive(true);
		}
	}
Exemple #2
0
	private void SetVisibleSortBtn( ePARTYLISTSORT eType)
	{
		m_eSortType = eType;
		foreach( UIRadioBtn radioBtn in m_SortRadioBtn)
			radioBtn.SetState( 1);

		m_SortRadioBtn[(int)m_eSortType].SetState(0);
	}