赞 | 26 |
VIP | 0 |
好人卡 | 0 |
积分 | 77 |
经验 | 0 |
最后登录 | 2024-11-9 |
在线时间 | 665 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7685
- 在线时间
- 665 小时
- 注册时间
- 2012-7-29
- 帖子
- 174
|
关于删除红圈内的窗口,只需要在\js\rpg_scenes.js的大概970-980行找到以下代码。
- Scene_Menu.prototype.create = function() {
- Scene_MenuBase.prototype.create.call(this);
- this.createCommandWindow();
- this.createGoldWindow();// 这行
- this.createStatusWindow();// 这行
- };
- Scene_Menu.prototype.start = function() {
- Scene_MenuBase.prototype.start.call(this);
- this._statusWindow.refresh();// 这行
- };
复制代码
把我标出的三行注释掉,红圈内就没有窗口了。
但是如果这个时候你想选择默认的“技能”、“装备”和“状态”,就会出错。 |
|