Ejemplo n.º 1
0
 public void StartTimer(float time, DelegateCreator.OnComplete onComplete)
 {
     StartCoroutine(RunTimer(time, onComplete));
 }
Ejemplo n.º 2
0
    private IEnumerator RunTimer(float time, DelegateCreator.OnComplete onComplete)
    {
        yield return(new WaitForSeconds(time));

        onComplete.Invoke(4.5f);
    }