Descriptions

This commit is contained in:
dazedanon 2025-11-22 14:14:36 -06:00
parent 5fb9a05d93
commit c38d6753d9

View file

@ -1612,6 +1612,12 @@ Window_Help.prototype.setText = function(text) {
}
};
Window_Help.prototype.resetFontSettings = function() {
this.contents.fontFace = $gameSystem.mainFontFace();
this.contents.fontSize = $gameSystem.mainFontSize() - 4;
this.resetTextColor();
};
Window_Help.prototype.clear = function() {
this.setText("");
};