赞 | 4 |
VIP | 17 |
好人卡 | 62 |
积分 | 14 |
经验 | 52410 |
最后登录 | 2023-8-24 |
在线时间 | 962 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1374
- 在线时间
- 962 小时
- 注册时间
- 2012-4-30
- 帖子
- 1475
|
这个效果貌似是外站的 不过这样简单多。。- #==============================================================================
- # ■ 显示图标的Window_Command BY 仲秋启明
- #------------------------------------------------------------------------------
- # 使用方法:在选项前加上"#{X}"即可
- # 比如:s1 = "#{12}" + Vocab::new_game
- #==============================================================================
- 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
- if /^(\d+)/ =~ @commands[index]
- draw_icon($1.to_i, rect.x, rect.y, enabled)
- rect.x += 26
- rect.width -= 26
- self.contents.draw_text(rect, )
- else
- self.contents.draw_text(rect, commands[index])
- end
- end
- end
复制代码 |
评分
-
查看全部评分
|