赞 | 8 |
VIP | 0 |
好人卡 | 0 |
积分 | 26 |
经验 | 0 |
最后登录 | 2022-11-7 |
在线时间 | 297 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2585
- 在线时间
- 297 小时
- 注册时间
- 2021-5-4
- 帖子
- 101
|
itemStandbySelectionWindow.setHandler('cancel', this.onItemStandbySelectionCancel.bind(this));
Scene_Battle.prototype.onItemStandbySelectionCancel = function () {
this._itemStandbySelectionWindow.close();
this._actorCommandWindow.activate()
}
那个当然不行 你少了关闭或者隐藏
this._statusWindow.deselect(); 这个是取消选择
Scene_Menu.prototype.onjjseeCancel = function () {
this._statusWindow.deselect();
//加上关闭
this._statusWindow.close()
//或者隐藏都行
this._statusWindow.hide()
this._commandWindow.activate();
}; |
|