Example #1
0
 void Start()
 {
     timerEx0 = TimerEvent.Create(Counting.Up, 10.0f, "Ex. 00")
                .OnUpdate(TimerUpdate)
                .OnPause(TimerPause)
                .OnResume(TimerResume)
                .OnCancel(TimerCancel)
                .OnComplete(TimerComplete)
                .Play();
 }