Advertisement
roninator2

Galv Explorer HUD - Hide HUD

Nov 3rd, 2020 (edited)
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.07 KB | Source Code | 0 0
  1. # ╔═════════════════════════════════════╦════════════════════╗
  2. # ║ Title: Hide Explorer HUD            ║  Version: 1.00     ║
  3. # ║ Author: Roninator2                  ║                    ║
  4. # ╠═════════════════════════════════════╬════════════════════╣
  5. # ║ Function:                           ║   Date Created     ║
  6. # ║ Galv's Explorer HUD -               ╠════════════════════╣
  7. # ║ Turn HUD ON or OFF                  ║    01 Nov 2020     ║
  8. # ╚═════════════════════════════════════╩════════════════════╝
  9. # ╔══════════════════════════════════════════════════════════╗
  10. # ║ Used to hide Galv's Explorer HUD                         ║
  11. # ║ Set the switch number and turn the switch on             ║
  12. # ║ to hide the HUD.                                         ║
  13. # ╚══════════════════════════════════════════════════════════╝
  14. # ╔═════════════════════════════════════╗
  15. # ║ Terms of use:                       ║
  16. # ║ Follow the Original Authors terms   ║
  17. # ╚═════════════════════════════════════╝
  18. module R2_GALV_HUD
  19.   HUD_TRIGGER = 45 # switch used to hide the HUD
  20. end
  21.  
  22. class Scene_Map < Scene_Base
  23.   alias r2_check_trigger_913by  check_trigger
  24.   def check_trigger
  25.     return if $game_switches[R2_GALV_HUD::HUD_TRIGGER]
  26.     r2_check_trigger_913by
  27.   end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement