Project1
标题:
测试时no such file or directory-Graphics/characters/.
[打印本页]
作者:
peanut510697427
时间:
2013-7-22 17:07
标题:
测试时no such file or directory-Graphics/characters/.
以前测试都没问题 后来不知道怎么回事突然就变这样了 ,求不重装的解决方法。。。。orz
游戏Graphics目录里characters都在 cache脚本如下:
load_bitmap("Graphics/Pictures/", filename)
end
#--------------------------------------------------------------------------
# * 获取系统图档
# filename : 文件名
#--------------------------------------------------------------------------
def self.system(filename)
load_bitmap("Graphics/System/", filename)
end
#--------------------------------------------------------------------------
# * 清除Cache
#--------------------------------------------------------------------------
def self.clear
@Cache
= {} if @cache == nil
@cache.clear
GC.start
end
#--------------------------------------------------------------------------
# * 载入图档
#--------------------------------------------------------------------------
def self.load_bitmap(folder_name, filename, hue = 0)
@cache = {} if @cache == nil
path = folder_name + filename
if not @cache.include?(path) or @cache[path].disposed?
if filename.empty?
@cache[path] = Bitmap.new(path)
else
@cache[path] = Bitmap.new(path)
end
end
if hue == 0
return @cache[path]
else
key = [path, hue]
if not @cache.include?(key) or @cache[key].disposed?
@cache[key] = @cache[path].clone
@cache[key].hue_change(hue)
end
return @cache[key]
end
end
end
作者:
认真的学
时间:
2013-7-22 17:56
if filename.empty?
@cache[path] = Bitmap.new(path)
else
@cache[path] = Bitmap.new(path)
end
复制代码
大概是这里的问题?文件名为空的话为什么还要尝试加载文件呢?
作者:
.さっとりーん
时间:
2013-7-22 18:07
没有找到相应的文件图片
作者:
黄濑凉太
时间:
2013-7-25 10:19
貌似以前用横战的时候也会这样,测试时没放行走图,然后战斗的时候就出来了。。。
因为横战的战斗素材是按照角色的行走图来找的嘛,你没放行走图,你的行走图文件名就变成了"."
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1