Advertisement
roninator2

Menu Music

Dec 13th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 6.60 KB | None | 0 0
  1. # ╔═══════════════════════════════════════════════╦════════════════════╗
  2. # ║ Title: Menu BGM                               ║  Version: 1.00     ║
  3. # ║ Author: Roninator2                            ║                    ║
  4. # ╠═══════════════════════════════════════════════╬════════════════════╣
  5. # ║ Function:                                     ║   Date Created     ║
  6. # ║                                               ╠════════════════════╣
  7. # ║   Play specific music in menu                 ║    30 Sep 2021     ║
  8. # ╚═══════════════════════════════════════════════╩════════════════════╝
  9. # ╔════════════════════════════════════════════════════════════════════╗
  10. # ║ Requires: nil                                                      ║
  11. # ║                                                                    ║
  12. # ╚════════════════════════════════════════════════════════════════════╝
  13. # ╔════════════════════════════════════════════════════════════════════╗
  14. # ║ Brief Description:                                                 ║
  15. # ║       Play music in menu                                           ║
  16. # ╚════════════════════════════════════════════════════════════════════╝
  17. # ╔════════════════════════════════════════════════════════════════════╗
  18. # ║ Instructions:                                                      ║
  19. # ║   Config music file below                                          ║
  20. # ║                                                                    ║
  21. # ╚════════════════════════════════════════════════════════════════════╝
  22. # ╔════════════════════════════════════════════════════════════════════╗
  23. # ║ Updates:                                                           ║
  24. # ║ 1.00 - 30 Sep 2021 - Script finished                               ║
  25. # ║                                                                    ║
  26. # ╚════════════════════════════════════════════════════════════════════╝
  27. # ╔════════════════════════════════════════════════════════════════════╗
  28. # ║ Credits and Thanks:                                                ║
  29. # ║   Roninator2                                                       ║
  30. # ║                                                                    ║
  31. # ╚════════════════════════════════════════════════════════════════════╝
  32. # ╔════════════════════════════════════════════════════════════════════╗
  33. # ║ Terms of use:                                                      ║
  34. # ║  Follow the original Authors terms of use where applicable         ║
  35. # ║    - When not made by me (Roninator2)                              ║
  36. # ║  Free for all uses in RPG Maker except nudity                      ║
  37. # ║  Anyone using this script in their project before these terms      ║
  38. # ║  were changed are allowed to use this script even if it conflicts  ║
  39. # ║  with these new terms. New terms effective 03 Apr 2024             ║
  40. # ║  No part of this code can be used with AI programs or tools        ║
  41. # ║  Credit must be given                                              ║
  42. # ╚════════════════════════════════════════════════════════════════════╝
  43.  
  44. module R2_Menu_Sound
  45.   SONG = "Theme1"
  46. end
  47.  
  48. # ╔════════════════════════════════════════════════════════════════════╗
  49. # ║                      End of editable region                        ║
  50. # ╚════════════════════════════════════════════════════════════════════╝
  51.  
  52. class Scene_Menu < Scene_MenuBase
  53.   #--------------------------------------------------------------------------
  54.   # * Start Processing
  55.   #--------------------------------------------------------------------------
  56.   def start
  57.     super
  58.     song = RPG::BGM.new(R2_Menu_Sound::SONG, 100, 100)
  59.     song.play
  60.     create_command_window
  61.     create_gold_window
  62.     create_status_window
  63.   end
  64. end
  65.  
  66. class Scene_Map < Scene_Base
  67.   def call_menu
  68.     Sound.play_ok
  69.     @last_bgm = RPG::BGM.last
  70.     SceneManager.call(Scene_Menu)
  71.     RPG::BGM.stop
  72.     Window_MenuCommand::init_command_position
  73.   end
  74.   alias r2_update_map_scene update_scene
  75.   def update_scene
  76.     r2_update_map_scene
  77.     return if SceneManager.scene_is?(Scene_Menu)
  78.     @last_bgm.play(@last_bgm.pos) if @last_bgm != nil
  79.     @last_bgm = nil
  80.   end
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement