Beispiel #1
0
    private IEnumerator execute(ExecuteFloat func, float time)
    {
        yield return(new WaitForSeconds(time));

        func();
    }
Beispiel #2
0
 public Coroutine executeWithDelay(ExecuteFloat func, float time)
 {
     return(StartCoroutine(execute(func, time)));
 }