/**
* <p>文本的字体名称,以字符串形式表示。</p>
* <p>默认值为:"Arial",可以通过Text.defaultFont设置默认字体。</p>
* <p>如果运行时系统找不到设定的字体,则用系统默认的字体渲染文字,从而导致显示异常。(通常电脑上显示正常,在一些移动端因缺少设置的字体而显示异常)。</p>
* @see laya.display.Text#defaultFont
*/
public function get font():String {
return _font;
}
public function set font(value:String):void {
if ((_style as TextStyle).currBitmapFont) {
_getTextStyle().currBitmapFont = null;
scale(1, 1);
}
if (_bitmapFonts && _bitmapFonts[value]) {
_getTextStyle().currBitmapFont = _bitmapFonts[value];
}
1 个回复
Aar0n
赞同来自:
* <p>文本的字体名称,以字符串形式表示。</p>
* <p>默认值为:"Arial",可以通过Text.defaultFont设置默认字体。</p>
* <p>如果运行时系统找不到设定的字体,则用系统默认的字体渲染文字,从而导致显示异常。(通常电脑上显示正常,在一些移动端因缺少设置的字体而显示异常)。</p>
* @see laya.display.Text#defaultFont
*/
public function get font():String {
return _font;
}
public function set font(value:String):void {
if ((_style as TextStyle).currBitmapFont) {
_getTextStyle().currBitmapFont = null;
scale(1, 1);
}
if (_bitmapFonts && _bitmapFonts[value]) {
_getTextStyle().currBitmapFont = _bitmapFonts[value];
}
_font = value;
isChanged = true;
}