赞 | 16 |
VIP | 0 |
好人卡 | 0 |
积分 | 40 |
经验 | 0 |
最后登录 | 2024-9-8 |
在线时间 | 141 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4043
- 在线时间
- 141 小时
- 注册时间
- 2018-1-22
- 帖子
- 137
|
保存下面代码为js文件,然后工程中开启插件
- /*:
- * @target MZ
- */
- Scene_Map.prototype.isMapTouchOk = function() {
- return false;
- };
- Window_Selectable.prototype.update = function() {
- this.processCursorMove();
- this.processHandling();
- Window_Scrollable.prototype.update.call(this);
- };
- var _titleCommand_makeList = Window_TitleCommand.prototype.makeCommandList;
- Window_TitleCommand.prototype.makeCommandList = function() {
- _titleCommand_makeList.call(this);
- this.addCommand(TextManager.gameEnd, "exit");
- };
- var _title_createCommandWindow = Scene_Title.prototype.createCommandWindow;
- Scene_Title.prototype.createCommandWindow = function() {
- _title_createCommandWindow.call(this);
- this._commandWindow.setHandler("exit", this.commandExit.bind(this));
- };
- Scene_Title.prototype.commandExit = function() {
- SceneManager.exit();
- };
复制代码
另外插句题外话:发帖前建议先搜索全站,像是退出游戏这种,站内肯定有大佬发过类似教程的 |
|