这是什么意思var _Window_ItemList_setCategory = Window_ItemList.prototype.setCategory; Window_ItemList.prototype.setCategory = function (category) { _Window_ItemList_setCategory.call(this, category); if (this._isAllowedAAPanel()) { if (this._category == 'item') { this._absPanel.show(); } else { this._absPanel.hide(); }
时间: 2023-05-30 20:05:25 浏览: 155
ItemList_e.rar_itemlist.rar_mo siang_墨香
这段代码是用来修改游戏中物品列表的行为。具体来说,它重写了Window_ItemList中的setCategory方法,当物品列表的分类发生改变时,会调用这个方法。在这个方法中,它首先调用了原来的setCategory方法,然后判断是否需要显示一个特殊的面板(_absPanel),如果当前的分类是'item',则显示面板,否则隐藏面板。
阅读全文