赞 | 4 |
VIP | 9 |
好人卡 | 5 |
积分 | 9 |
经验 | 14928 |
最后登录 | 2018-7-4 |
在线时间 | 421 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 898
- 在线时间
- 421 小时
- 注册时间
- 2015-7-5
- 帖子
- 131
|
- class Window_Command < Window_Selectable
- def draw_item(index,enabled = true)
- rect = item_rect(index)
- rect.x += 4
- rect.width -= 8
- self.contents.clear_rect(rect)
- self.contents.font.color = normal_color
- self.contents.font.color.alpha = enabled ? 255 : 128
-
- #以下3组“”内的文字要与你游戏设置的一致
- case @commands[index]
- when "存档"
- self.contents.font.color = text_color(12)
- when "物品","特技"
- self.contents.font.color = text_color(10)
- end
- #=======================================
-
- self.contents.draw_text(rect, @commands[index])
- end
- end
复制代码 |
评分
-
查看全部评分
|