=begin ▼ タイトルスキップ ver. 1.1 RPGツクールVXAce用スクリプト 制作 : 木星ペンギン URL : http://woodpenguin.blog.fc2.com/ ------------------------------------------------------------------------------ 概要 □ セーブファイルが一つでも存在する場合、   ゲーム起動時のみタイトル画面を飛ばしてロード画面に移動します。 =end #////////////////////////////////////////////////////////////////////////////// # # 設定項目なし # #////////////////////////////////////////////////////////////////////////////// #============================================================================== # ■ Window_TitleCommand #============================================================================== class Window_TitleCommand < Window_Command #-------------------------------------------------------------------------- # ☆ オブジェクト初期化 #-------------------------------------------------------------------------- def initialize super(0, 0) update_placement #select_symbol(:continue) if continue_enabled self.openness = 0 open end end #============================================================================== # ■ Scene_Title #============================================================================== class Scene_Title < Scene_Base #-------------------------------------------------------------------------- # ● メイン #-------------------------------------------------------------------------- def main if Graphics.frame_count == 0 && DataManager.save_file_exists? start post_start SceneManager.call(Scene_Load) pre_terminate terminate else super end end end