赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 74 |
经验 | 0 |
最后登录 | 2024-12-4 |
在线时间 | 478 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7389
- 在线时间
- 478 小时
- 注册时间
- 2021-12-4
- 帖子
- 519
|
Window_Status.prototype.drawParameters = function(x, y) { // rpg_windows.js 第 2592 行
var lineHeight = this.lineHeight();
for (var i = 0; i < 4; i++) { // 本行将原来的 6 改为 4,表示只显示四种能力值
var paramId = [2,3,6,7][i]; // 本行也有修改,表示只显示 物攻、物防、敏捷、幸运
var y2 = y + lineHeight * i;
this.changeTextColor(this.systemColor());
this.drawText(TextManager.param(paramId), x, y2, 160);
this.resetTextColor();
this.drawText(this._actor.param(paramId), x + 160, y2, 60, 'right');
}
}
Window_EquipStatus.prototype.refresh = function() { // rpg_windows.js 第 2280 行
this.contents.clear();
if (this._actor) {
this.drawActorName(this._actor, this.textPadding(), 0);
for (var i = 0; i < 4; i++) { // 同上
this.drawItem(0, this.lineHeight() * (1 + i), [2,3,6,7][i]); // 同上
}
}
} |
评分
-
查看全部评分
|