赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 14 |
经验 | 330 |
最后登录 | 2019-1-14 |
在线时间 | 137 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1393
- 在线时间
- 137 小时
- 注册时间
- 2017-9-28
- 帖子
- 9
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
最近在学习修改UI,但是遇到了困难,遂求助论坛,我个人希望能修改成下面的字体↓
于是我找到了[this._numberImg.width / 10,this._numberImg.height],修改了图片,但发现这个方法并不适用于斜体字,于是变成了这样↓
在此向各位大佬求助,希望不吝赐教
1.我希望能够在代码中插入我希望使用的某字体,加粗,斜体,描边,字号。
2.我希望能教教我如何在字体前加上“HP”二字,同样字体,加粗,斜体,描边,字号。
附上原代码,取自MOG插件。
//==============================
// * create HP Number
//==============================
MCharStatus.prototype.createHPNumber = function() {
this._hp_number = [];
this._NumberData = [this._numberImg.width / 10,this._numberImg.height]
var x = this._layout.x + Moghunter.scMenu_HPNumberX;
var y = this._layout.y + Moghunter.scMenu_HPNumberY;
for (var i = 0; i < 5; i++) {
this._hp_number = new Sprite(this._numberImg);
this._hp_number.visible = false;
this._hp_number.opacity = 255;
this._hp_number.x = x ;
this._hp_number.y = y ;
this._hp_number.fontSize = 33 ;
this.addChild(this._hp_number);
};
this.refresh_number(this._hp_number,this._actor.hp,this._NumberData,x)
}; |
|