赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 72 |
经验 | 0 |
最后登录 | 2024-11-16 |
在线时间 | 474 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7247
- 在线时间
- 474 小时
- 注册时间
- 2021-12-4
- 帖子
- 513
|
Window_TitleCommand.prototype.makeCommandList = function() {
const continueEnabled = this.isContinueEnabled();
this.addCommand(TextManager.newGame, "newGame");
this.addCommand(TextManager.continue_, "continue", continueEnabled);
this.addCommand(TextManager.options, "options");
this.addCommand('退出游戏', 'exit');
this.setHandler('exit', () => Utils.isNwjs() && nw.App.quit());
}
但是这个办法只适用于Windows下双击exe或者macOS下双击app打开的游戏窗口,不适用于浏览器环境。 |
|