cenhangkai 发表于 2022-7-18 17:53 这位大佬是神一般的存在,已经帮过我好几次了,也帮过很多朋友,他不会让你自己去学代码啊,或者是说一大堆理论,只是默默提供一段代码,而且非常好用,简单实用,马上就能解决大家的燃眉之急。 |
cenhangkai 发表于 2022-7-18 17:53 大佬好强 |
cenhangkai 发表于 2022-7-18 17:53 哇哦,确实有效,非常感谢! |
随手写的,把下面代码复制粘贴到任意插件 最下面,可实现你的截图想法。希望对你有帮助。 var _window_ShopSell_drawItem = Window_ItemList.prototype.drawItem; Window_ShopSell.prototype.drawItem = function(index) { _window_ShopSell_drawItem.call(this,index); var item = this._data[index]; if (item) { var numberWidth = this.numberWidth(); var rect = this.itemRect(index); rect.width -= this.textPadding(); this.changePaintOpacity(this.isEnabled(item)); var dw = TextManager.currencyUnit; var sj = Math.floor(item.price / 2); var cd = this.textWidth($gameParty.maxItems(item))+20; this.resetTextColor(); this.drawText(sj, rect.x - cd - this.textWidth(dw), rect.y, rect.width,'right');// this.changeTextColor(this.systemColor()); this.drawText(dw, rect.x - cd, rect.y, rect.width,'right'); this.resetTextColor(); this.changePaintOpacity(1); }; }; |
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-11-18 04:39
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.