Project1
标题:
求解,那个支援单张图标的脚本出错了
[打印本页]
作者:
fxwd
时间:
2012-3-18 04:05
标题:
求解,那个支援单张图标的脚本出错了
本帖最后由 fxwd 于 2012-3-18 10:03 编辑
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 # 轉換成數字 #--------------------------------------------------------------------------
alias draw_single_icon_draw_icon draw_icon
def draw_icon(icon_index, x, y, enabled = true)
if icon_index.is_a?(Integer) # 判断是否为整数
elsif icon_index
return icon_index # 返回指定图标文件名
end
return draw_single_icon_icon_index # 否则返回原本的图标 index
end
end
class Window_Base
#--------------------------------------------------------------------------
# ● 绘制图标
# 调用原本的绘制图标方法
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
这个脚本,用了之后提示CACHE106行出错了,什么意思?
作者:
仲秋启明
时间:
2012-3-18 09:06
没找到你设置的图标
作者:
fxwd
时间:
2012-3-18 10:03
哦,谢谢,解决了,是因为我把那张图片弄成了PNG格式的了
作者:
雪流星
时间:
2012-3-18 12:50
补充一点,如果文件夹中有两个同名文件(扩充名不同)时,也会出错
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1