Project1

标题: 如何在游戏主菜单加入直接关闭游戏的选项? [打印本页]

作者: nhycs01    时间: 2022-11-28 16:28
标题: 如何在游戏主菜单加入直接关闭游戏的选项?
在游戏主菜单里选择退出游戏,只有返回标题和取消,能不能加一个退出游戏?选择后就直接关闭游戏。
作者: 小秋橙    时间: 2022-11-28 17:46
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打开的游戏窗口,不适用于浏览器环境。
作者: nhycs01    时间: 2022-11-29 10:59
小秋橙 发表于 2022-11-28 17:46
Window_TitleCommand.prototype.makeCommandList = function() {
    const continueEnabled = this.isCont ...

感谢大佬!请问这几段代码应该加在哪里?
作者: 小秋橙    时间: 2022-11-29 12:28
nhycs01 发表于 2022-11-29 10:59
感谢大佬!请问这几段代码应该加在哪里?

rpg_scenes.js第五百行吧
作者: nhycs01    时间: 2022-11-29 12:49
小秋橙 发表于 2022-11-29 12:28
rpg_scenes.js第五百行吧

复制以后,无法启动游戏,窗口黑屏
作者: 小秋橙    时间: 2022-11-29 16:25
啊啊啊是我的错,应该是rpg_windows.js第5750行!(直接扔到插件里应该也行?)




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1