예제 #1
0
	void Open_FadeIn()
	{
		if(m_State != eDlgState.FadeIn)
		{
			m_State = eDlgState.FadeIn;
			
			StopAllCoroutines();
			StartCoroutine(FadeInProcess());
		}
	}
예제 #2
0
	void Close_FadeOut()
	{
		if(m_State != eDlgState.FadeOut)
		{
			m_State = eDlgState.FadeOut;
			
			StopAllCoroutines();
			StartCoroutine(FadeOutProcess());
		}
	}
예제 #3
0
	void OpenCompletion()
	{
		if(m_State != eDlgState.Normal)
		{
			m_State = eDlgState.Normal;
			
			StopAllCoroutines();
			StartCoroutine(OpenCompletionProcess());
		}
	}