Example #1
0
	void OnDisable()
	{
		m_TabState = eFindFriendTab.NONE;
	}
Example #2
0
	private void SetVisibleTab( int index)
	{
		foreach( AsSocialTab panel in m_Panels)
			panel.gameObject.SetActiveRecursively( false);

		m_Panels[index].gameObject.SetActiveRecursively( true);
		m_TabState = ( eFindFriendTab)index;
	}