示例#1
0
 public void HalfPower()
 {
     if (!halved)
     {
         if (MG != null)
         {
             MG.GetComponent <General.MoveAnimation>().timescale *= 1.5f;
         }
         else if (G != null)
         {
             G.cooldown *= 2;
         }
         halved = true;
     }
 }