• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 285 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)

1. Laya2.6.0 升级至Laya2.8.0 Native环境 加载ttf 字体不生效 [ 100%]

...    Laya.loader.load("res/fonts/OPPOSANS-R.TTF", Laya.Handler.create(this, (success: boolean) => {                 if (!success) {                     console.error("OPPOSANS-R ttf 字体加载失败");                 } else {  ...

来源: Laya_社区 发布时间: 20201104

2. 2.6.0在微信小游戏TTFLoader加载ttf字体失败 [ 99%]

...e 一直在执行 里面的逻辑条件一直无法达成所以也调不了this._complete();:private _checkComplete(): void { //该条件一直无法达成 if (ILaya.Browser.measureText(TTFLoader._testString, this._fontTxt).width != this._txtWidth) { this._complete(); } } 请问该怎么处理ttf...

来源: Laya_社区 发布时间: 20200628

3. 怎样复制bmf字体 [ 96%]

...    class cloneLabel extends Laya.Label { constructor(_label) { super(); this.align = _label.align; this.x = _label.x; this.y = _label.y; this.width = _label.width; this.height = _label.height; this.fontSize = _label.fontSize; this.color = _label.color; this.font = _label.font; } } 2018-05-17 添...

来源: Laya_社区 发布时间: 20180517

4. Laya.loader.load加载位图字体 [ 95%]

...重复加载图片,走不到else里面,if的判断是否应该改为 !this._data             if (!data._source){                 this._data=data;                 this.event(/*laya.events.Event.PROGRESS*/"progress",0.5);                 ...

来源: Laya_社区 发布时间: 20190402

5. 怎么使用ttf,版本2.0.2 [ 93%]

... Laya_Aaron 赞同来自: Laya.loader.load("abc.ttf",Laya.Handler.create(thisthis.abc)); demo里没写预加载字体的代码, 先加载字体,然后再在回调方法里 初始化场景 abc():void{         GameConfig.startScene && Laya.Scene.open(GameConfig.startScene);  ...

来源: Laya_社区 发布时间: 20191217

6. [LayaAir3]支付宝小游戏使用TTF字体异常 [ 90%]

...             fgui.UIConfig.defaultFont = fontName;             this._defaultFont = fontName;             console.log("小游戏字体加载成功->" + fontName);//成功走到这里了 但是UI没效果         } else {             console.error("小游戏字体加载...

来源: Laya_社区 发布时间: 20240513

7. iOS wkWebView [ 90%]

...答下啊!     private connect(): void { console.log("connect...."); this.hr = new Laya.HttpRequest(); this.hr.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.hr.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); this.hr.once(Laya.Event.ERROR, this, this.onHttpRequest...

来源: Laya_社区 发布时间: 20201023

8. LayaNative 2.8.0 加载的TTF字体不生效,附复现工程。 [ 90%]

...      Laya.loader.load("fonts/OPPOSANS-H.ttf", Laya.Handler.create(this, (success) => {             console.log("2.8.0 字体加载是否成功:", success);             Laya.Text.defaultFont = "OPPOSANS-H";         }), null, Laya.Loader.TTF) 附件 ...

来源: Laya_社区 发布时间: 20201118

9. 位图字体生效 [ 90%]

...apFont(); mBitmapFont.loadFont("res/bitmapFont/test.fnt", new Laya.Handler(this, onLoaded)); function onLoaded(){ mBitmapFont.setSpaceWidth(10); Laya.Text.registerBitmapFont(mFontName,mBitmapFont); let txt = new Laya.Text(); txt.text='手机号 +86'; txt.color='#FFFFFF'; txt.font = mFontName;//=====...

来源: Laya_社区 发布时间: 20191108

10. 位图字体ide无法注册 [ 88%]

...给ide用。。。我还需要mBitmapFont.loadFont。不需要了吧、。 this.mFontName = "diyFont"; this.mBitmapFont = new Laya.BitmapFont(); //这里不需要扩展名,外部保证fnt与png文件同名 this.mBitmapFont.loadFont("res/bitmapFont/test.fnt",new Laya.Handler(this,onLoaded)); functi...

来源: Laya_社区 发布时间: 20180329