赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 900 |
最后登录 | 2013-11-18 |
在线时间 | 23 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 23 小时
- 注册时间
- 2011-5-23
- 帖子
- 41
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 hcm 于 2013-3-25 13:13 编辑
上一个问题,改了32变80是能显示大图标了,但选项还是32的规格,以致于一个3个选项都在一个物品图标区域,愁死了,不知道改哪里
- # 价格在所持金以下、并且所持数不是 99 的情况下为普通文字颜色
- # 除此之外的情况设置为无效文字色
- if item.price <= $game_party.gold and number < 99
- self.contents.font.color = normal_color
- else
- self.contents.font.color = disabled_color
- end
- x = 4
- y = index * 80
- rect = Rect.new(0, 0, self.width - 32, 0)
-
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- bitmap = RPG::Cache.icon(item.icon_name)
- opacity = self.contents.font.color == normal_color ? 255 : 128
- self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 80, 80), opacity)
- self.contents.draw_text(x + 100, y, 212, 32, item.name, 0)
- self.contents.draw_text(x + 500, y, 88, 32, item.price.to_s, 2)
- end
复制代码 |
|