Esempio n. 1
0
 void switchCamera()
 {
     if (ct.GetTime() > 10 && !switchedToTwo)
     {
         changeToCam2();
     }
     if (ct.GetTime() > 30 && !switchedToThree)
     {
         changeToCam3();
     }
 }
Esempio n. 2
0
 public void Update()
 {
     if (ct != null && ct.GetTime() > 90)
     {
         Transition();
     }
 }
Esempio n. 3
0
 public void Update()
 {
     if (ct.GetTime() > 100)
     {
         MoveToSnow();
     }
 }
Esempio n. 4
0
 void switchCamera()
 {
     if (ct.GetTime() > 10 && !switchedToTwo)
     {
         changeToCam2();
     }
     if (ct.GetTime() > 30 && !switchedToThree)
     {
         changeToCam3();
     }
     if (ct.GetTime() > 50 && !switchedToFour)
     {
         changeToCam4();
     }
     if (ct.GetTime() > 60 && !switchedToFive)
     {
         changeToCam5();
     }
     if (ct.GetTime() > 75 && !switchedToSix)
     {
         changeToCam6();
     }
 }