赞 | 4 |
VIP | 17 |
好人卡 | 62 |
积分 | 14 |
经验 | 52410 |
最后登录 | 2023-8-24 |
在线时间 | 962 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1409
- 在线时间
- 962 小时
- 注册时间
- 2012-4-30
- 帖子
- 1475
|
本帖最后由 铅笔描绘的思念 于 2012-8-22 10:59 编辑
直接把Window_Command推倒了全局选择窗口都变成 无效则加(?)这样的- #==============================================================================
- # ■ Window_Command
- #------------------------------------------------------------------------------
- # 一般的命令选择行窗口。
- #==============================================================================
- class Window_Command < Window_Selectable
- #--------------------------------------------------------------------------
- # ● 绘制项目
- # index : 项目位置
- # enabled : 有效标志,false时项目半透明化
- #--------------------------------------------------------------------------
- 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
- unless enabled
- self.contents.draw_text(rect, "#{@commands[index]}(?)")
- else
- self.contents.draw_text(rect, @commands[index])
- end
- end
- end
复制代码
|
评分
-
查看全部评分
|