赞 | 10 |
VIP | 0 |
好人卡 | 4 |
积分 | 4 |
经验 | 36501 |
最后登录 | 2019-9-13 |
在线时间 | 679 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 440
- 在线时间
- 679 小时
- 注册时间
- 2014-3-15
- 帖子
- 292
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
当然,这个脚本涉及到了JP的脚本,所以最好还是用JP来升级技能。
在使用之前找到相应脚本,更改
Window_SkillStatus.prototype.initialize = function(x, y, width, height) {
Window_Base.prototype.initialize.call(this, 600, y, 210, 72);
this._actor = null;
};
Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
this.drawActorClass(actor, 0, 0);
};
Window_SkillStatus.prototype.refresh = function() {
this.contents.clear();
if (this._actor) {
this.drawActorSimpleStatus(this._actor, 0, 0, 200);
}
};
这样的话这三个命令就没法用了,建议到时候新建drawActorSimpleStatus等命令,因为JP是写在了class属性上的,所以只能这样了。 |
评分
-
查看全部评分
|