赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
本帖最后由 VIPArcher 于 2014-9-28 21:58 编辑
- class RPG::BaseItem
- #--------------------------------------------------------------------------
- # ● 获取图标
- #--------------------------------------------------------------------------
- def get_icon
- self.note.split(/[\r\n]+/).each { |line|
- return $1 if line =~ /<ICON:(\S+)>/i
- }
- return nil
- end
- #--------------------------------------------------------------------------
- # ● 图标 index
- #--------------------------------------------------------------------------
- alias vip_20140928_icon_index icon_index
- def icon_index
- return get_icon if get_icon
- return vip_20140928_icon_index
- end
- end
- class Window_Base
- #--------------------------------------------------------------------------
- # ● 绘制图标
- #--------------------------------------------------------------------------
- alias vip_20140928_draw_icon draw_icon
- def draw_icon(icon_index, x, y, enabled = true)
- if icon_index.is_a?(Integer)
- vip_20140928_draw_icon(icon_index, x, y, enabled)
- else
- bitmap = Cache.load_bitmap("Graphics/Icons/", icon_index)
- rect = Rect.new(0, 0, 24, 24)
- contents.blt(x, y, bitmap, rect, enabled ? 255 : translucent_alpha)
- end
- end
- end
复制代码 使用方法:物品/技能/状态备注栏备注<ICON:文件名>
文件放在"Graphics/Icons/"文件夹下(自己新建一个) |
评分
-
查看全部评分
|