/*:
* @plugindesc Namepop Ver 1.03 NPC名称显示
* @author Morpho(dongdongDJH)
*
* @help
* 在地图事件注释栏内填入 NPOP|显示文字|字体颜色|高度修正值|字体Size;
* 高度修正值单位为1格,不填默认为1,字体大小不填默认为18,颜色默认;显示文字默认显示名称
* 例:NPOP|显示文字|#00FF00 ; NPOP|显示文字; NPOP||#FF6600。(ps:只在注释内写NPOP则可显示名称)
* 注:一定要用‘|’分隔高度修正值和字体Size;
* 若要调整描边 请直接在下方代码中调整 (ps:0.8是颜色的透明度,0-1)
*/
(function() {
_Sprite_Character_prototype_initialize = Sprite_Character.prototype.initialize;
Sprite_Character.prototype.initialize = function(character) {
_Sprite_Character_prototype_initialize.call(this, character);
this._tempCharacter = character;
if (character instanceof Game_Event) {
if (character.event().note.match("NPOP") != null) {
var notetext = character.event().note.split("|");
this._namepopn = notetext[1] || this._tempCharacter.event().name;
this._BYcolor = notetext[2] || "#FFFFFF";
this._namepopY = Number(notetext[3]) || 1;
this._fontSize = Number(notetext[4]) || 18;
this.createNamepopSet();
}
}
};
Sprite_Character.prototype.createNamepopSet = function() {
var name = this._namepopn;
var h = this._fontSize;
this._namepopSprite = new Sprite();
this._namepopSprite.bitmap = new Bitmap(h * 10, h);
this._namepopSprite.bitmap.fontSize = h;
this._namepopSprite.bitmap.outlineColor = "rgba(0, 0, 0, 0.8)"//描边颜色
this._namepopSprite.bitmap.outlineWidth = 4;//字体描边
this._namepopSprite.bitmap.textColor = this._BYcolor;//字体颜色
this._namepopSprite.bitmap.drawText(name, 0, 0, h * 10, h, 'center');
this._namepopSprite.anchor.x = 0.5;
this._namepopSprite.anchor.y = 1;
this._namepopSprite.y = this.y - this._namepopY * 48;
this.addChild(this._namepopSprite);
};
// ---- 新增跟随事件显示 ----
_Sprite_Character_prototype_setCharacterBitmap = Sprite_Character.prototype.setCharacterBitmap;
Sprite_Character.prototype.setCharacterBitmap = function() {
_Sprite_Character_prototype_setCharacterBitmap.call(this);
if (this._tempCharacter instanceof Game_Event) {
this._BYconditions = this._tempCharacter.findProperPageIndex();
if(this._BYconditions >= 0 && this._namepopSprite){
this._namepopSprite.visible = true;
}else if(this._namepopSprite){
this._namepopSprite.visible = false;
}
}
};
}());