#============================================================================== # ■ イベントの仕様変更 (VX Ace用) #------------------------------------------------------------------------------ # 製作者 : CanariAlternate # サイト名 : カルトの鳥篭 # サイトURL : http://canarialt.blog.fc2.com #------------------------------------------------------------------------------ # ■ 概要 : イベント終了時の 1 フレームのウェイトを無くす。 # イベント開始前の文章の表示終了の待機を無くす。 # # ■ 必須 : なし # # ■ 位置 : 「Game_Interpreter」より下 #------------------------------------------------------------------------------ # 更新履歴 : 2012/12/30 Ver1.00 スクリプトを作成した。 # 2013/02/19 Ver1.01 共通処理スクリプトの廃止による変更を施した。 #============================================================================== $imported ||= {} $imported[:CanariAlternate_InterpreterRun] = true #============================================================================== # ■ Game_Interpreter #------------------------------------------------------------------------------ #  イベントコマンドを実行するインタプリタです。このクラスは Game_Map クラス、 # Game_Troop クラス、Game_Event クラスの内部で使用されます。 #============================================================================== class Game_Interpreter #-------------------------------------------------------------------------- # ● 実行 [◆再定義] #-------------------------------------------------------------------------- def run # wait_for_message # 待機しない while @list[@index] do execute_command @index += 1 end # Fiber.yield # ウェイトしない @fiber = nil end end