Esempio n. 1
0
 /// <summary> Unpause all CoRoutines with given CoTag. </summary>
 public static void UnpauseCoRoutines(CoTag coTag)
 {
     OrderToCoRoutinesViaCoTag?.Invoke(CallbackOrder.Unpause, coTag);
 }
Esempio n. 2
0
 /// <summary> Kill all CoRoutines with given CoTag. </summary>
 public static void KillCoRoutines(CoTag coTag)
 {
     OrderToCoRoutinesViaCoTag?.Invoke(CallbackOrder.Kill, coTag);
 }