Esempio n. 1
0
 void Shorten()//缩短
 {
     timer += Time.deltaTime;
     if (timer > 0)
     {
         bm.RemoveBody();               //调用肢节管理器的移除方法
         text.text = (--hp).ToString(); //血量-1并显示
         timer     = -0.05f;            //每0.05秒调用一次
     }
 }