public void TakeDamage(int damage) { if (hp <= 0) return; //上锁,防止频繁受攻击时冲突 hp -= damage; if (hp <= 0) { Die(); } }
本文标题:受伤掉血死亡-unity
本文链接:https://www.haomeiwen.com/subject/ftbmfktx.html
网友评论