赞 | 4 |
VIP | 0 |
好人卡 | 0 |
积分 | 16 |
经验 | 0 |
最后登录 | 2024-8-26 |
在线时间 | 220 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1606
- 在线时间
- 220 小时
- 注册时间
- 2022-2-3
- 帖子
- 160
|
本帖最后由 apple5740 于 2022-11-20 08:59 编辑
你好,看图片的效果猜测是插件实现的一个场景。
可能要根据你使用的插件内容进行操作。
下面是更改原版的显示的一个方法作为参考:
实现办法:在任何一个插件中写下如下语句,注释掉或者删除掉不需要显示的内容。
你可以查看原版的脚本内容,在 rmmz_windows.js 中 搜索该方法,进行对比,参考。
/* 绘制角色简单的状态(名字、等级、图标、职业、HP、MP、TP) */
Window_StatusBase.prototype.drawActorSimpleStatus = function(actor, x, y) {
const lineHeight = this.lineHeight();
//const x2 = x + 180;
this.drawActorName(actor, x, y);
//注释等级显示
//this.drawActorLevel(actor, x, y + lineHeight * 1);
this.drawActorIcons(actor, x, y + lineHeight * 2);
//注释显示职业
//this.drawActorClass(actor, x2, y);
//注释放置计量条
// this.placeBasicGauges(actor, x2, y + lineHeight);
};
修改前,后
|
|