Project1

标题: 单一状态图标 [打印本页]

作者: xiaoxiyp    时间: 2014-9-28 20:45
标题: 单一状态图标
一些小图标我不想用iconset,而想用单张照片
作者: VIPArcher    时间: 2014-9-28 21:09
本帖最后由 VIPArcher 于 2014-9-28 21:58 编辑
  1. class RPG::BaseItem
  2.   #--------------------------------------------------------------------------
  3.   # ● 获取图标
  4.   #--------------------------------------------------------------------------
  5.   def get_icon
  6.     self.note.split(/[\r\n]+/).each { |line|
  7.       return $1 if line =~ /<ICON:(\S+)>/i
  8.     }
  9.     return nil
  10.   end
  11.   #--------------------------------------------------------------------------
  12.   # ● 图标 index
  13.   #--------------------------------------------------------------------------
  14.   alias vip_20140928_icon_index icon_index
  15.   def icon_index
  16.     return get_icon if get_icon
  17.     return vip_20140928_icon_index
  18.   end
  19. end
  20. class Window_Base
  21.   #--------------------------------------------------------------------------
  22.   # ● 绘制图标
  23.   #--------------------------------------------------------------------------
  24.   alias vip_20140928_draw_icon draw_icon
  25.   def draw_icon(icon_index, x, y, enabled = true)
  26.     if icon_index.is_a?(Integer)
  27.       vip_20140928_draw_icon(icon_index, x, y, enabled)
  28.     else
  29.       bitmap = Cache.load_bitmap("Graphics/Icons/", icon_index)
  30.       rect = Rect.new(0, 0, 24, 24)
  31.       contents.blt(x, y, bitmap, rect, enabled ? 255 : translucent_alpha)
  32.     end
  33.   end
  34. end
复制代码
使用方法:物品/技能/状态备注栏备注<ICON:文件名>
文件放在"Graphics/Icons/"文件夹下(自己新建一个)
作者: xiaoxiyp    时间: 2014-9-28 22:25
谢,已解决




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1