Project1

标题: MZ有按SHIFT键暂时消去文本框的插件吗? [打印本页]

作者: 真·黑色安息日    时间: 2025-3-18 14:53
标题: MZ有按SHIFT键暂时消去文本框的插件吗?
MV的不兼容,让DeepSeeK写了好几版效果都不行,尤其是姓名框消不下去,或者消了就再也回不来了。
作者: 526396987    时间: 2025-3-18 19:21
  1. var _hideMessage_Scene_Map_update = Scene_Map.prototype.update;
  2. Scene_Map.prototype.update = function() {
  3.     _hideMessage_Scene_Map_update.call(this);
  4.    
  5.     if (Input.isTriggered("shift") && this._messageWindow.isOpen()) {
  6.         this._messageWindow.visible = !this._messageWindow.visible;
  7.         this._nameBoxWindow.visible = this._messageWindow.visible;
  8.     };
  9. };
复制代码

作者: 真·黑色安息日    时间: 2025-3-19 09:44
526396987 发表于 2025-3-18 19:21

感谢高人出手相助。




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