Project1
标题:
如何取消MZ的触屏功能
[打印本页]
作者:
美味虾珍
时间:
2021-3-21 19:58
标题:
如何取消MZ的触屏功能
有没有插件什么的可以取消关于MZ的触屏功能
因为作为纯键盘党派,点击移动有点误操作
能不能把触屏相关的东西都去掉啊还有选项的部分也去掉
顺便MZ有没有退出游戏的功能,研究了50小时都没发现退出游戏的功能
作者:
526396987
时间:
2021-3-23 17:16
保存下面代码为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();
};
复制代码
另外插句题外话:发帖前建议先搜索全站,像是退出游戏这种,站内肯定有大佬发过类似教程的
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1