kakuriyo/js/plugins/UMU_MenuItemHide.js
2023-06-29 14:42:52 -05:00

24 lines
No EOL
556 B
JavaScript

/*:
* @target MZ
* @plugindesc 一覧に表示される概要
* @author 作者名
*
* @help
* 動作内容をメモ
*/
(() => {
"use strict";
Window_StatusBase.prototype.drawActorSimpleStatus = function (actor, x, y) {
const lineHeight = this.lineHeight();
const x2 = x + 180;
this.drawActorName(actor, x, y);
//this.drawActorLevel(actor, x, y + lineHeight * 1);
this.drawActorIcons(actor, x, y + lineHeight * 2);
//this.drawActorClass(actor, x2, y);
//this.placeBasicGauges(actor, x2, y + lineHeight);
};
})();