Exemplo n.º 1
0
 private static void HandleQuit()
 {
     CoroutineManager.StopAllRoutines();
     RedOwlTools.IsShuttingDown = true;
 }
Exemplo n.º 2
0
 public CoroutineWrapper Stop()
 {
     CoroutineManager.StopRoutine(_routine);
     return(this);
 }
Exemplo n.º 3
0
 public void Stop()
 {
     OnExit();
     CoroutineManager.StopRoutine(_routine);
     _isStarted = false;
 }
Exemplo n.º 4
0
 public CoroutineWrapper Start()
 {
     _routine = CoroutineManager.StartRoutine(Wrapper(_target));
     return(this);
 }
Exemplo n.º 5
0
 public void Start()
 {
     OnEnter();
     _routine   = CoroutineManager.StartRoutine(Wrapper());
     _isStarted = true;
 }