예제 #1
0
    public IEnumerator DrawChopperEvent() //mainn function that draws new event and does it
    {
        while (true)
        {
            yield return(new WaitForSeconds(chopperTimer));

            Chopper chopper = ChopperFactory.GetInstance();
            chopper.StartMoving();
        }
    }
예제 #2
0
 public void OnCountdownEnd(long id, float overtime)
 {
     if (id == pigeonId)
     {
         Pigeon pigeon = PigeonFactory.GetInstance();
         pigeon.StartMoving();
         TimerManager.Reset(pigeonId, pigeonTimer);
     }
     else if (id == chopperId)
     {
         Chopper chopper = ChopperFactory.GetInstance();
         chopper.StartMoving();
         TimerManager.Reset(chopperId, chopperTimer);
     }
 }