Project1
标题:
如何修改战斗中的帮助窗口位置
[打印本页]
作者:
laysd123
时间:
2023-7-25 13:47
标题:
如何修改战斗中的帮助窗口位置
想调整 帮助窗口位置,以及大小
weixin图片_20230725134429.png
(621.64 KB, 下载次数: 13)
下载附件
保存到相册
2023-7-25 13:47 上传
作者:
小秋橙
时间:
2023-7-25 17:29
Scene_Battle.prototype.createHelpWindow = function() {
const rect = this.helpWindowRect();
this._helpWindow = new Window_Help(rect);
this._helpWindow.hide();
this.addWindow(this._helpWindow);
};
// rmmz_scenes.js 第3231行
Scene_Battle.prototype.helpWindowRect = function() {
const wx = 0;
const wy = this.helpAreaTop();
const ww = Graphics.boxWidth;
const wh = this.helpAreaHeight();
return new Rectangle(wx, wy, ww, wh);
}; // 可以修改 wx wy ww wh 来调节位置和宽高
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1