Project1
标题:
如何让买卖商品里的属性不显示出来
[打印本页]
作者:
falef
时间:
2011-1-28 07:29
标题:
如何让买卖商品里的属性不显示出来
本帖最后由 falef 于 2011-1-28 09:29 编辑
如下图
Snap4.jpg
(38.57 KB, 下载次数: 19)
下载附件
保存到相册
2011-1-28 07:28 上传
作者:
fux2
时间:
2011-1-28 08:33
本帖最后由 fux2 于 2011-1-28 09:22 编辑
回复
falef
的帖子
Window_ShopStatus里
def refresh
self.contents.clear
if @item != nil
number = $game_party.item_number(@item)
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 200, WLH, Vocab::Possession)
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, 200, WLH, number, 2)
for actor in $game_party.members
x = 4
y = WLH * (2 + actor.index * 2)
draw_actor_parameter_change(actor, x, y)
end
end
end
复制代码
替换为
def refresh
self.contents.clear
if @item != nil
number = $game_party.item_number(@item)
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 200, WLH, Vocab::Possession)
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, 200, WLH, number, 2)
end
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1