#============================================================================== # タイトルデモエディター # (オプション:ロード画面から戻った際はロゴとデモをスキップ ver1.00) #   by 水夜 #  http://zenith.ifdef.jp/ #============================================================================== #============================================================================== # ■ Scene_Load #============================================================================== class Scene_Load < Scene_File #-------------------------------------------------------------------------- # ● 決定時の処理 #-------------------------------------------------------------------------- alias title_on_decision on_decision def on_decision(filename) # ファイルが存在する場合 if FileTest.exist?(filename) $skip = nil end title_on_decision(filename) end #-------------------------------------------------------------------------- # ● キャンセル時の処理 #-------------------------------------------------------------------------- alias title_on_cancel on_cancel def on_cancel $skip = true title_on_cancel end end