Exemplo n.º 1
0
 public static Timer ScheduleTimerOnce(Action callback, float delay = 0.0f, bool repeated = false, string name = null)
 {
     return(s_sharedInstance.ScheduleOnce(callback, delay, repeated, name));
 }
Exemplo n.º 2
0
 protected virtual void ScheduleSaveConfig()
 {
     m_timerManager.ScheduleOnce(SaveConfig);
 }