Beispiel #1
0
 void CallFuture()
 {
     StartCoroutine(future.CoComplete(r => {
         Debug.Log("Coroutine is called!");
         // to check to be able to call Unity methods.
         GameObject.Find("TestRunner");
         Assert.True(r.Success);
     }));
 }