Project1

标题: 还有VA的出字有那些打字声音是怎么做到的? [打印本页]

作者: chehoucheng1997    时间: 2013-11-19 02:17
标题: 还有VA的出字有那些打字声音是怎么做到的?
还有VA的出字有那些打字声音是怎么做到的?
作者: tseyik    时间: 2013-11-19 08:56
制御文字 \B効果音有効/無効切替
変数(初期設定)文字顕示速度,越大越慢
  0008
module TMMESSAGESE
  MESSAGE_SE = RPG::SE.new("Cursor1", 80, 150)    # 再生的効果音
  AUTO_SE = true    # true 有効、false無 効
  
  VN_MESSAGE_WAIT = 8   # 設定文章表示速度使用変数番号
  1. #==============================================================================
  2. # ★ RGSS3_メッセージ効果音 Ver1.1
  3. #==============================================================================
  4. =begin

  5. 作者:tomoaky
  6. webサイト:ひきも記 (http://hikimoki.sakura.ne.jp/)

  7. 文章の表示コマンド実行時、文字の表示と一緒に効果音を鳴らします。

  8. 制御文字 \B を使って効果音を再生するかどうかを設定できます。
  9. \B が出てくるたびに切り替わりますが AUTO_SE が true の場合は
  10. 最初から効果音が鳴る状態になっています。

  11. おまけ機能として文章の表示速度を変更することができます。
  12. 設定したゲーム変数(初期設定では8番)の値が大きければ大きいほど
  13. 表示速度は遅くなります。1 がデフォルトの速度で最低値です。

  14. 使用するゲーム変数(初期設定)
  15.   0008
  16.   
  17. 2012.01.22  Ver1.1
  18.   おまけ機能の文章表示速度変更を追加
  19.   
  20. 2012.01.21  Ver1.0
  21.   公開

  22. =end

  23. #==============================================================================
  24. # □ 設定項目
  25. #==============================================================================
  26. module TMMESSAGESE
  27.   MESSAGE_SE = RPG::SE.new("Cursor1", 80, 150)    # 再生される効果音
  28.   AUTO_SE = true    # true で自動的に再生、false で制御文字があったときのみ再生
  29.   
  30.   VN_MESSAGE_WAIT = 8   # 文章の表示速度として扱うゲーム変数番号
  31. end

  32. #==============================================================================
  33. # ■ Window_Message
  34. #==============================================================================
  35. class Window_Message
  36.   #--------------------------------------------------------------------------
  37.   # ● フラグのクリア
  38.   #--------------------------------------------------------------------------
  39.   alias tmmessagese_window_message_clear_flags clear_flags
  40.   def clear_flags
  41.     tmmessagese_window_message_clear_flags
  42.     @se_flag = TMMESSAGESE::AUTO_SE
  43.   end
  44.   #--------------------------------------------------------------------------
  45.   # ● 一文字出力後のウェイト
  46.   #--------------------------------------------------------------------------
  47.   alias tmessagese_window_message_wait_for_one_character wait_for_one_character
  48.   def wait_for_one_character
  49.     [$game_variables[TMMESSAGESE::VN_MESSAGE_WAIT], 1].max.times do |i|
  50.       tmessagese_window_message_wait_for_one_character
  51.     end
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # ● 通常文字の処理
  55.   #--------------------------------------------------------------------------
  56.   alias tmmessagese_window_message_process_normal_character process_normal_character
  57.   def process_normal_character(c, pos)
  58.     tmmessagese_window_message_process_normal_character(c, pos)
  59.     TMMESSAGESE::MESSAGE_SE.play if @se_flag
  60.   end
  61.   #--------------------------------------------------------------------------
  62.   # ● 制御文字の処理
  63.   #     code : 制御文字の本体部分(「\C[1]」なら「C」)
  64.   #     text : 描画処理中の文字列バッファ(必要なら破壊的に変更)
  65.   #     pos  : 描画位置 {:x, :y, :new_x, :height}
  66.   #--------------------------------------------------------------------------
  67.   alias tmmessage_window_message_process_escape_character process_escape_character
  68.   def process_escape_character(code, text, pos)
  69.     case code.upcase
  70.     when 'B'
  71.       @se_flag ^= true
  72.     else
  73.       tmmessage_window_message_process_escape_character(code, text, pos)
  74.     end
  75.   end
  76. end

复制代码

作者: chehoucheng1997    时间: 2013-11-19 13:04
tseyik 发表于 2013-11-19 08:56
制御文字 \B効果音有効/無効切替
変数(初期設定)文字顕示速度,越大越慢
  0008

速度設置不到
作者: tseyik    时间: 2013-11-19 21:07
是這様






欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1