示例#1
0
 void CountCoins()
 {
     if (coinTime <= coinTimeOffset)
     {
         coinTime += Time.deltaTime;
     }
     if (coinTime >= coinTimeOffset)
     {
         pitchCounter = 3;
         gameManagerScript.CallMyCoinReset();
     }
 }