赞 | 204 |
VIP | 13 |
好人卡 | 7 |
积分 | 122 |
经验 | 52899 |
最后登录 | 2021-6-29 |
在线时间 | 4435 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12157
- 在线时间
- 4435 小时
- 注册时间
- 2014-4-11
- 帖子
- 5955
|
状态页面可以直接在,数据库,系统,把状态取消勾。
菜单界面的状态窗口是Window_MenuStatus
HPMP的显示在
Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
//求线高度
var lineHeight = this.lineHeight();
//求X2
var x2 = x + 180;
//求长度2
var width2 = Math.min(200, width - 180 - this.textPadding());
//显示名字
this.drawActorName(actor, x, y);
//显示等级
this.drawActorLevel(actor, x, y + lineHeight * 1);
//显示图标
this.drawActorIcons(actor, x, y + lineHeight * 2);
//显示职业
this.drawActorClass(actor, x2, y);
//显示HP
this.drawActorHp(actor, x2, y + lineHeight * 1, width2);
//显示MP
this.drawActorMp(actor, x2, y + lineHeight * 2, width2);
};
你想要哪个不显示,就在哪个前面加//把他注释了。或者你可以直接删除他 |
|