Код:
(() => {
Window_MenuStatus.prototype.drawItem = function(index) {
this.drawPendingItemBackground(index);
//this.drawItemImage(index);
this.drawItemStatus(index);
};
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);
};
})();
Символ
"//" - это комментарий, он делает строчку кода "не активной".
Если удалить, станет активной, если поставить - не активной.
Экспериментируй.
//this.drawItemImage(index); - рисование фейса ("не активное"), остальное
по аналогии.
Социальные закладки