Project1

标题: 如何取消MZ的触屏功能 [打印本页]

作者: 美味虾珍    时间: 2021-3-21 19:58
标题: 如何取消MZ的触屏功能
有没有插件什么的可以取消关于MZ的触屏功能
因为作为纯键盘党派,点击移动有点误操作
能不能把触屏相关的东西都去掉啊还有选项的部分也去掉
顺便MZ有没有退出游戏的功能,研究了50小时都没发现退出游戏的功能
作者: 526396987    时间: 2021-3-23 17:16
保存下面代码为js文件,然后工程中开启插件

  1. /*:
  2. * @target MZ
  3. */
  4. Scene_Map.prototype.isMapTouchOk = function() {
  5.     return false;
  6. };

  7. Window_Selectable.prototype.update = function() {
  8.     this.processCursorMove();
  9.     this.processHandling();
  10.     Window_Scrollable.prototype.update.call(this);
  11. };

  12. var _titleCommand_makeList = Window_TitleCommand.prototype.makeCommandList;
  13. Window_TitleCommand.prototype.makeCommandList = function() {
  14.     _titleCommand_makeList.call(this);
  15.     this.addCommand(TextManager.gameEnd, "exit");
  16. };

  17. var _title_createCommandWindow = Scene_Title.prototype.createCommandWindow;
  18. Scene_Title.prototype.createCommandWindow = function() {
  19.     _title_createCommandWindow.call(this);
  20.     this._commandWindow.setHandler("exit", this.commandExit.bind(this));
  21. };

  22. Scene_Title.prototype.commandExit = function() {
  23.     SceneManager.exit();
  24. };
复制代码

另外插句题外话:发帖前建议先搜索全站,像是退出游戏这种,站内肯定有大佬发过类似教程的




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