Project1
标题:
如何改变存档位置?
[打印本页]
作者:
冷峻逸
时间:
2015-5-6 19:56
提示:
作者被禁止或删除 内容自动屏蔽
作者:
冷峻逸
时间:
2015-5-6 20:33
提示:
作者被禁止或删除 内容自动屏蔽
作者:
VIPArcher
时间:
2015-5-6 22:30
例如这样
module VIPArcher
Saves_Url = 'Saves/' #存档文件的路径
end
class Scene_File < Scene_Base
include VIPArcher
#--------------------------------------------------------------------------
# ● 生成文件名称
# file_index : 存档位置(0~3)
#--------------------------------------------------------------------------
def make_filename(file_index)
Dir.mkdir(Saves_Url) unless FileTest.exist?(Saves_Url)
return Saves_Url + "Save#{file_index + 1}.rvdata"
end
end
class Scene_Title < Scene_Base
include VIPArcher
#--------------------------------------------------------------------------
# ● 判断继续的有效性
#--------------------------------------------------------------------------
def check_continue
@continue_enabled = (Dir.glob(Saves_Url + 'Save*.rvdata').size > 0)
end
end
复制代码
作者:
冷峻逸
时间:
2015-5-7 20:37
提示:
作者被禁止或删除 内容自动屏蔽
作者:
冷峻逸
时间:
2015-5-10 11:00
提示:
作者被禁止或删除 内容自动屏蔽
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1