Exemplo n.º 1
0
 private void Stop()
 {
     m_timerOn = false;
     if (m_coroutineChain != null)
     {
         m_coroutineChain.StopCoroutine();
         m_coroutineChain = null;
     }
 }
Exemplo n.º 2
0
 private void OnDestroy()
 {
     if (m_coroutineChain != null)
     {
         m_coroutineChain.StopCoroutine();
         m_coroutineChain = null;
     }
 }