Font Change

● ARCHIVED · READ-ONLY
Started by SenseiBrycen 5 posts View original ↗
  1. Hello everyone, I'm looking to change the font of the entire game. I want to make it more original, and I would prefer if I could do so without use of an outside script. To say it blandly, I want to know what I can change that is already in the ingame scripts. Is this possible or should I look for a script? If I need to get an outside script, then do you have any suggestions?
  2. If it's just one font for the entire game, replace your Main (very last script at the bottom of the scripts list) with this:



    Code:
    #==============================================================================
    # ** Main
    #------------------------------------------------------------------------------
    # This processing is executed after module and class definition is finished.
    #==============================================================================
    
    Font.default_name = ["Arial"] # Edit as you see fit.
    Font.default_size = 22 # Edit as you see fit.
    
    rgss_main { SceneManager.run }
    If you want more than one font or a different font for menu and for text, you may need to look into a message script. :)
  3. Thank you very much! And yes, it's for the entire game!
  4. Keep in mind that your message box previews in the editor won't show you what messages will look like with your new font, by the way, so you might want to check your messages and such to make sure that they're properly aligned (or use a monospace font to make determining how your messages will look easier).
  5. This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.