| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 97 |
| 经验 | 0 |
| 最后登录 | 2025-10-31 |
| 在线时间 | 462 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 7658
- 在线时间
- 462 小时
- 注册时间
- 2021-12-4
- 帖子
- 492

|
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 来调节位置和宽高 |
|