(() => {
Window_StatusBase.prototype.drawActorFace = function(actor, x, y, w, h) {
w = w || ImageManager.faceWidth;
h = h || ImageManager.faceHeight;
const x2 = Math.floor(x + w / 2);
const y2 = y + Math.floor(h * 3 / 4);
this.drawActorCharacter(actor, x2, y2);
};
})();
神無月サスケ様、あらあら、要望消しちゃいましたか。
「メニュー画面で顔グラではなく歩行グラを表示したい」というので
プラグインを作りました。
もう無用かもしれませんが、とりあえず置いておきます。
JavaScript:(() => { Window_StatusBase.prototype.drawActorFace = function(actor, x, y, w, h) { w = w || ImageManager.faceWidth; h = h || ImageManager.faceHeight; const x2 = Math.floor(x + w / 2); const y2 = y + Math.floor(h * 3 / 4); this.drawActorCharacter(actor, x2, y2); }; })();
View attachment 13445View attachment 13446
もうひとつの要望(戦闘画面のステータスをMVのようにしたい)は未着手ですが
こちらも、書いてくれれば、応じられたと思います。
気が向いたらまた書き込んでください。