示例#1
0
 void Update()
 {
     if (mCountingDown)
     {
         mTimeLeft      -= Time.deltaTime;
         mTimerText.text = Mathf.RoundToInt(mTimeLeft).ToString();
         if (mTimeLeft < 0)
         {
             mCountingDown = false;
             mRestaurantScript.RandomizeTurn();
         }
     }
 }