Ejemplo n.º 1
0
 public static void StopAll()
 {
     WithScene.StopAll();
 }
Ejemplo n.º 2
0
 public static void Stop(Coroutine coroutine)
 {
     WithScene.Stop(coroutine);
 }
Ejemplo n.º 3
0
 public static Coroutine WaitForUnscaledSeconds(float seconds)
 {
     return(WithScene.WaitForUnscaledSeconds(seconds));
 }
Ejemplo n.º 4
0
 public static Coroutine WaitFor(Func <bool> predicate)
 {
     return(WithScene.WaitFor(predicate));
 }
Ejemplo n.º 5
0
 public static Coroutine Delay(Action action, float delay_sec, bool unscaled = false)
 {
     return(WithScene.Delay(action, delay_sec, unscaled));
 }
Ejemplo n.º 6
0
 public static Coroutine Run(IEnumerator enumerator)
 {
     return(WithScene.Run(enumerator));
 }