Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Edit font without a plugin

jaye

Villager
Xy$
0.00
I tried the version where you change the text file in the font folder, but it wouldn't work for me. I don't why. I just change the font within the rpg_windows.js script. Open it in Sublime Text (or a text editor program). Find the line: (line 45 in Sublime Text)

Window_Base.prototype.standardFontFace = function() {
if ($gameSystem.isChinese()) {
return 'SimHei, Heiti TC, sans-serif';
} else if ($gameSystem.isKorean()) {
return 'Dotum, AppleGothic, sans-serif';
} else {
return 'GameFont';
}
};

Change this bold line to whatever font you want to use. Remember to place the font file in the 'Font' folder in your project directory. Just in case. Worked for me. You can also change the size and padding on the additional lines below this. Trial and error.
REMEMBER TO ALWAYS BACK YOUR FILES UP BEFORE CHANGING ANYTHING!

Known Bugs: For some reason, the commands don't show up in battle unless you have a custom battle scene!!!!!
Everything else works fine. Obviously, doesn't work with plugins that change the font.
 
Top