Project1

标题: 如何改变存档位置? [打印本页]

作者: 冷峻逸    时间: 2015-5-6 19:56
提示: 作者被禁止或删除 内容自动屏蔽
作者: 冷峻逸    时间: 2015-5-6 20:33
提示: 作者被禁止或删除 内容自动屏蔽
作者: VIPArcher    时间: 2015-5-6 22:30
例如这样
  1. module VIPArcher
  2.   Saves_Url = 'Saves/'   #存档文件的路径
  3. end
  4. class Scene_File < Scene_Base
  5.   include VIPArcher
  6.   #--------------------------------------------------------------------------
  7.   # ● 生成文件名称
  8.   #     file_index : 存档位置(0~3)
  9.   #--------------------------------------------------------------------------
  10.   def make_filename(file_index)
  11.     Dir.mkdir(Saves_Url) unless FileTest.exist?(Saves_Url)
  12.     return Saves_Url + "Save#{file_index + 1}.rvdata"
  13.   end
  14. end

  15. class Scene_Title < Scene_Base
  16.   include VIPArcher
  17.   #--------------------------------------------------------------------------
  18.   # ● 判断继续的有效性
  19.   #--------------------------------------------------------------------------
  20.   def check_continue
  21.     @continue_enabled = (Dir.glob(Saves_Url + 'Save*.rvdata').size > 0)
  22.   end
  23. end
复制代码

作者: 冷峻逸    时间: 2015-5-7 20:37
提示: 作者被禁止或删除 内容自动屏蔽
作者: 冷峻逸    时间: 2015-5-10 11:00
提示: 作者被禁止或删除 内容自动屏蔽




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