赞 | 5 |
VIP | 52 |
好人卡 | 19 |
积分 | 6 |
经验 | 4394 |
最后登录 | 2023-5-29 |
在线时间 | 961 小时 |
Lv2.观梦者 铃铃塔的守护者
- 梦石
- 0
- 星屑
- 626
- 在线时间
- 961 小时
- 注册时间
- 2010-10-24
- 帖子
- 2768
|
- def draw_item(index, color)
- self.contents.font.color = color
- if $scene.is_a?(Scene_XYZ)
- if index<=5
- rect = Rect.new(107 * index+13, 0, 107, 32)
- else
- rect= Rect.new(107 * index+13,32,107,32)
- end
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- self.contents.draw_text(rect, @commands[index])
- else
- rect = Rect.new(4, 32 * index, self.contents.width - 8, 32)
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- self.contents.draw_text(rect, @commands[index])
- end
- end
复制代码 那这样如何....(现在脑子迟钝了吗..改个坐标也能错这么多次....) |
评分
-
查看全部评分
|