How to change the font of just the startup screen

● ARCHIVED · READ-ONLY
Started by FateAtkinson 5 posts View original ↗
  1. I have found a script add-on that allows you to change the font for the whole game, but I couldn't find one that just changes the startup screens font. Do any of you know how to do this? My maker is vx ace btw.
  2. I assume you mean the title text? In that case

    Code:
    class Scene_Title < Scene_Base  #--------------------------------------------------------------------------  # * Draw Game Title  #--------------------------------------------------------------------------  alias rmw_change_font_draw_game_title draw_game_title  def draw_game_title    @foreground_sprite.bitmap.font.name = ["yourfonthere"]    rmw_change_font_draw_game_title  endend
    Don't forget to include the font in a Fonts folder in your game directory. Also keep in mind that you need to use the font name you see when you preview the font, not necessarily the file name.
  3. Thank you for the help, but could you tell me exactly what to do? I don't want to screw up my game by doing something wrong.
  4. 1)Create a folder named Fonts in your project folder if one does not already exist.

    2)Copy-Paste the font you want to use into this folder.

    3)Open your project.

    4)Press F11 or click the script editor icon.

    5)Scroll to the bottom of the script list on the left.

    6)Right-click where it says (Insert Here) and select Insert. Then click the space you just inserted and give it a name.

    7)Copy-Paste the contents the code box in my previous post into the script box on the right.

    8)Change yourfonthere to the name of the font you want to use.

    9)Click OK.

    10)Save your game.
  5. Thank you so much, this will be really helpful not only for my current game but for future games as well. So thank you for helping me out.