赞 | 9 |
VIP | 0 |
好人卡 | 4 |
积分 | 4 |
经验 | 36501 |
最后登录 | 2019-9-13 |
在线时间 | 679 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 440
- 在线时间
- 679 小时
- 注册时间
- 2014-3-15
- 帖子
- 292
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
Window_SkillList.prototype.maxCols = function() {
return 1;
};
Scene_Skill.prototype.createItemWindow = function() {
var ww = Moghunter.scSkill_ItemWindowWidth;
var wh = Moghunter.scSkill_ItemWindowHeight;
var wx = Moghunter.scSkill_ItemWindowX + ((Graphics.boxWidth / 2) - (ww / 2));
var wy = Moghunter.scSkill_ItemWindowY;
this._itemWindow = new Window_SkillList(wx, wy, ww, wh);
this._itemWindow.setHelpWindow(this._helpWindow);
this._itemWindow.opacity = 0;
this._itemWindow.setHandler('ok', this.onItemOk.bind(this));
this._itemWindow.setHandler('cancel', this.onItemCancel.bind(this));
this._skillTypeWindow.setSkillWindow(this._itemWindow);
this.addWindow(this._itemWindow);
this._itemPosOrg = [this._itemWindow.x,this._itemWindow.y];
};
替换Mog_SceneSkill.js 内对应代码即可完成 |
评分
-
查看全部评分
|