-
Notifications
You must be signed in to change notification settings - Fork 0
/
MAUI_RemoveOutlnes.js
56 lines (45 loc) · 1.62 KB
/
MAUI_RemoveOutlnes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//=============================================================================
// Maui Game Studio Plugins - Remove Outlines
// MAUI_RemoveOutlines.js
//=============================================================================
//=============================================================================
/*:
* @target MV, MZ
* @plugindesc v1.1
* @author Joseph Abraham
*
*
*
* @help
* ============================================================================
* Introduction
* ============================================================================
*
* This super simple plugin will remove outlines from your RPG Maker MV game.
* Mny prefer the look to the vanilla font look. Try it and see if you like it.
*
* You are welcome to use this code for free or commercial games if you credit
* me and let me know I appreciate it. If you want to use the code in a plugin,
* I'm okay with that, just let me know.
*
* Feel free to report bugs and I'll get to it when I can.
*
* @plugindesc This plugin removes outlines for RPG Maker MV and RPG Maker MZ.
* Contact me via email: [email protected]
*/
//BATTLE HUD STUFF
(function() {
Window_BattleActor.prototype.lineHeight = function() {
return 45;
};
Window_BattleActor.prototype.drawAllItems = function() {
return 'void';
};
//WINDOW BASE FONT OUTLINES
'use strict';
var _Window_Base_ResetFontSettings = Window_Base.prototype.resetFontSettings;
Window_Base.prototype.resetFontSettings = function() {
_Window_Base_ResetFontSettings.call( this );
this.contents.outlineWidth = 0;
};
})();