diff --git a/js/plugins/YEP_QuestJournal.js b/js/plugins/YEP_QuestJournal.js index a964d4f..1ba7026 100644 --- a/js/plugins/YEP_QuestJournal.js +++ b/js/plugins/YEP_QuestJournal.js @@ -4063,30 +4063,13 @@ Window_Selectable.prototype.RefreshZzyXTQJ = function() - +//asd //---魔改--- v1.00 重写 processTouch 此处可能会造成不兼容的情况 -Window_QuestData.prototype.processTouch = function() { - if (this.isOpenAndActive() || SceneManager._scene._listWindow.active) - { - if (TouchInput.isTriggered() && this.isTouchedInsideFrame()) { - this._touching = true; - this.onTouch(true); - } else if (TouchInput.isCancelled()) { - if (this.isCancelEnabled()) { - this.processCancel(); - } - } - if (this._touching) { - if (TouchInput.isPressed()) { - this.onTouch(false); - } else { - this._touching = false; - } - } - } else { - this._touching = false; - } +Window_QuestData.prototype.processTouch = function() +{ + + Window_Selectable.prototype.processTouch.call(this); //刷新关闭Touch if(!this._touching)