Ejemplo n.º 1
0
 public virtual void AwaitersBegin(CancellationToken token)
 {
     //Need to remake loading screen logic entirely
     Debug.LogWarning("WIP");
     ActionScheduler.AddAction(() => loadingScreen.SetActive(true));
     Awaiters(token);
     AwaitersFinish();
 }
Ejemplo n.º 2
0
 protected virtual void AwaitersFinish()
 {
     Debug.LogWarning("WIP");
     ActionScheduler.AddAction(() => loadingScreen.SetActive(false));
 }