Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
| /*: | |
| * @plugindesc Face positions are screwed up for me on a shorter height window; this fixes that | |
| * @author Ben Hendel-Doying | |
| * | |
| * @help That's it! | |
| */ | |
| Window_MenuStatus.prototype.drawItemImage = function(index) { | |
| let actor = $gameParty.members()[index]; | |
| let rect = this.itemRect(index); | |
| this.changePaintOpacity(actor.isBattleMember()); | |
| this.drawActorFace(actor, rect.x, rect.y + rect.height - 1 - Window_Base._faceHeight, Window_Base._faceWidth, Window_Base._faceHeight); | |
| this.changePaintOpacity(true); | |
| }; |