Skip to content
Permalink
main
Go to file
 
 
Cannot retrieve contributors at this time
12 lines (11 sloc) 325 Bytes
/*:
* @plugindesc Disables outlines on fonts.
* @author Ben Hendel-Doying
*
* @help That's it!
*/
var _Window_Base_ResetFontSettings = Window_Base.prototype.resetFontSettings;
Window_Base.prototype.resetFontSettings = function() {
_Window_Base_ResetFontSettings.call( this );
this.contents.outlineWidth = 0;
};
You can’t perform that action at this time.