赞 | 1 |
VIP | 0 |
好人卡 | 4 |
积分 | 12 |
经验 | 31094 |
最后登录 | 2024-10-27 |
在线时间 | 898 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1244
- 在线时间
- 898 小时
- 注册时间
- 2014-12-4
- 帖子
- 379
|
本帖最后由 翻滚牛宝宝 于 2015-9-23 10:15 编辑
http://rpg.blue/forum.php?mod=viewthread&tid=222506 原帖地址
使用方法:
将图标文件放在 游戏根目录/Graphics/Icons 里面
在数据库的物品/武器/防具/技能/状态中的备注里面写 [icon 文件名]
- class RPG::BaseItem
- #--------------------------------------------------------------------------
- # ● 获取图标
- #--------------------------------------------------------------------------
- def get_icon
- self.note.split(/[\r\n]+/).each { |line|
- return $1 if line =~ /\[(?:icon) (\S+)\]/
- }
- return nil
- end
- #--------------------------------------------------------------------------
- # ● 图标 index
- #--------------------------------------------------------------------------
- alias draw_single_icon_icon_index icon_index
- def icon_index
- icon_index = get_icon
- # 如果有指定图标
- if icon_index && icon_index =~ /\d+/ # 如果指定的是數字
- @icon_index = icon_index.to_i # 轉換成數字
- elsif icon_index
- return icon_index # 返回指定图标文件名
- end
- return draw_single_icon_icon_index # 否则返回原本的图标 index
- end
- end
- class Window_Base
- #--------------------------------------------------------------------------
- # ● 绘制图标
- #--------------------------------------------------------------------------
- alias draw_single_icon_draw_icon draw_icon
- def draw_icon(icon_index, x, y, enabled = true)
- if icon_index.is_a?(Integer) # 判断是否为整数
- # 调用原本的绘制图标方法
- draw_single_icon_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
复制代码 这个脚本也可以 |
评分
-
查看全部评分
|