Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

It seems like the issue might be related to not loading the fonts properly. Here's a quick guide to help:

  • Font Loading:
  1. Copy the font file to the 'fonts/' folder of your RPG Maker project.
  2. Open the plugin settings in the RPG Maker MZ editor.
  3. Find the parameter responsible for font settings called 'Fonts.'
  4. Enter the font file name (e.g., 'myfont.ttf') in the 'File Name' field.
  5. Enter the name to reference the font in the game (e.g., 'CustomFont') in the 'Font Family' field.
  6. Use the assigned font name (e.g., 'CustomFont') in the 'fontName' parameter of text comments to apply this font to the text.

Example usage:

<Text - Hello, world!; fontName=CustomFont> 

This should apply the custom font to the text. Let me know if that helps!