/*:
* @plugindesc 把一些原始模板存在的展示数据给隐藏了
* @author RPG MAKER Form
*
* @help 没有任何资料在这里
*/
//====================
//把菜单相关等级的资讯隐藏起来
//====================
Window_Base.prototype.drawActorLevel = function(actor, x, y) {
this.changeTextColor(this.systemColor());
this.resetTextColor();
};
//======================
//把“状态”里的相关等级资讯隐藏起来
//======================
Window_Status.prototype.drawExpInfo = function(x, y) {
this.changeTextColor(this.systemColor());
this.resetTextColor();
};
/*:
* @plugindesc 把一些原始模板存在的展示数据给隐藏了
* @author RPG MAKER Form
*
* @help 没有任何资料在这里
*/
//====================
//把菜单相关等级的资讯隐藏起来
//====================
Window_Base.prototype.drawActorLevel = function(actor, x, y) {
this.changeTextColor(this.systemColor());
this.resetTextColor();
};
//======================
//把“状态”里的相关等级资讯隐藏起来
//======================
Window_Status.prototype.drawExpInfo = function(x, y) {
this.changeTextColor(this.systemColor());
this.resetTextColor();
};