# ▽△▽ XRXSv8. タイトルとばし ▽△▽ # # publish 2010/ 3/ 3 # update - # #============================================================================== # □ カスタマイズポイント #============================================================================== class Scene_Title < Scene_Base def start super load_database # データベースをロード create_game_objects # ゲームオブジェクトを作成 command_new_game end def dispose_title_graphic end def dispose_command_window end def open_command_window end def close_command_window end def update super end def perform_transition end def command_new_game confirm_player_location $game_party.setup_starting_members # 初期パーティ $game_map.setup($data_system.start_map_id) # 初期位置のマップ $game_player.moveto($data_system.start_x, $data_system.start_y) $game_player.refresh $scene = Scene_Map.new Graphics.frame_count = 0 $game_map.autoplay end end