| 
x
加入我们,或者,欢迎回来。您需要 登录 才可以下载或查看,没有帐号?注册会员  //=============================================================================// DEAC_HPColorChange.js//============================================================================= /*: * @plugindesc 简单地改变HP槽颜色。 * @author DEDADA */ Window_Base.prototype.gaugeBackColor = function() {    return this.textColor(15);}; Window_Base.prototype.hpGaugeColor1 = function() {    return this.textColor(30);}; Window_Base.prototype.hpGaugeColor2 = function() {    return this.textColor(31);};
//============================================================================= 
// DEAC_HPColorChange.js 
//============================================================================= 
  
/*: 
 * @plugindesc 简单地改变HP槽颜色。 
 * @author DEDADA 
 */ 
  
Window_Base.prototype.gaugeBackColor = function() { 
    return this.textColor(15); 
}; 
  
Window_Base.prototype.hpGaugeColor1 = function() { 
    return this.textColor(30); 
}; 
  
Window_Base.prototype.hpGaugeColor2 = function() { 
    return this.textColor(31); 
}; 
 |