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