赞 | 1 |
VIP | 0 |
好人卡 | 0 |
积分 | 4 |
经验 | 0 |
最后登录 | 2023-8-21 |
在线时间 | 87 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 394
- 在线时间
- 87 小时
- 注册时间
- 2020-11-4
- 帖子
- 25
|
已自己解决了,如有后来者遇到这个问题,以下是答案:
1、打开项目/js/rpg_windows.js
2、Ctrl+F搜:Window_Base.prototype.drawActorMp
3、将它下方的几段注释掉,战斗中就可以隐藏掉了。
- Window_Base.prototype.drawActorMp = function(actor, x, y, width) {
- //width = width || 186;
- var color1 = this.mpGaugeColor1();
- var color2 = this.mpGaugeColor2();
- //this.drawGauge(x, y, width, actor.mpRate(), color1, color2);
- //this.changeTextColor(this.systemColor());
- //this.drawText(TextManager.mpA, x, y, 44);
- //this.drawCurrentAndMax(actor.mp, actor.mmp, x, y, width,
- //this.mpColor(actor), this.normalColor());
复制代码 |
评分
-
查看全部评分
|