diff --git a/assets/script/game/hero/HeroViewComp.ts b/assets/script/game/hero/HeroViewComp.ts index 033682fd..798e1767 100644 --- a/assets/script/game/hero/HeroViewComp.ts +++ b/assets/script/game/hero/HeroViewComp.ts @@ -102,7 +102,8 @@ export class HeroViewComp extends CCComp { // } /* 显示角色血*/ this.top_node.getChildByName("hp").active = true; - this.top_node.getChildByName("mp").active = true; + // 🔥 怪物不显示蓝条 + this.top_node.getChildByName("mp").active = this.model.fac === FacSet.HERO; this.top_node.getChildByName("shield").active = false; // 初始隐藏血条(被攻击后才显示) this.top_node.active = true;