# # 文章送り改造・タイプA:XP方式(RGSS2) #  (C)2008 TYPE74RX-T # #============================================================================== # ■ Window_Message #------------------------------------------------------------------------------ #  文章表示に使うメッセージウィンドウです。 #============================================================================== class Window_Message < Window_Selectable #-------------------------------------------------------------------------- # ● 早送りフラグの更新 #-------------------------------------------------------------------------- def update_show_fast if self.pause or self.openness < 255 @show_fast = false # ★ Input.trigger?をInput.press?に変えただけ elsif Input.press?(Input::C) and @wait_count < 2 @show_fast = true elsif not Input.press?(Input::C) @show_fast = false end if @show_fast and @wait_count > 0 @wait_count -= 1 end end end