赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 1335 |
最后登录 | 2024-6-24 |
在线时间 | 14 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 129
- 在线时间
- 14 小时
- 注册时间
- 2016-12-3
- 帖子
- 13
|
6楼
楼主 |
发表于 2016-12-3 20:57:39
|
只看该作者
本帖最后由 Aerodynamics 于 2016-12-4 06:10 编辑
解决了……把这一段存成js,放进plugins。然后就可以用对应的开关控制战斗窗口的开闭。
//=============================================================================
// HideBattleWindow.js
//=============================================================================
/*:
* @plugindesc Hides the battle menu.
* @author Dawit Thepchatree edited by Aerodynamics
*
* @help 把5换成控制窗口显示的开关
*
*/
(function() {
Scene_Battle.prototype.updateStatusWindow = function() {
if ($gameMessage.isBusy() || $gameSwitches.value(5)) {
this._statusWindow.close();
this._partyCommandWindow.close();
this._actorCommandWindow.close();
} else if (this.isActive() && !this._messageWindow.isClosing()) {
this._statusWindow.open();
}
};
})(); |
|