Window_MenuStatus.prototype.drawActorExp = function(actor, x, y, width) {
width = width || 186;
var color1 = expColor1;
var color2 = expColor2;
var nre = actor.nextRequiredExp(); //下一级所需经验
var ce = actor.currentExp() - actor.currentLevelExp(); //累积经验 - 当前等级所需经验
this.drawGauge(x, y - 8, width, (ce / nre), color1, color2); //经验条位置和颜色
this.resetTextColor(); //文字颜色
this.drawText(toNextLevel, x, y - 8, width);//描绘 "经验值" 文字
};
Window_MenuStatus.prototype.drawActorExp = function(actor, x, y, width) {
width = width || 186;
var color1 = expColor1;
var color2 = expColor2;
var nre = actor.nextRequiredExp(); //下一级所需经验
var ce = actor.currentExp() - actor.currentLevelExp(); //累积经验 - 当前等级所需经验
this.drawGauge(x, y - 8, width, (ce / nre), color1, color2); //经验条位置和颜色
this.resetTextColor(); //文字颜色
this.drawText(toNextLevel, x, y - 8, width);//描绘 "经验值" 文字
};