大约有 121 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
...eGold); // 价格 fish.scoreText = new Laya.Text(); fish.scoreText.font = "fnt_10103"; // fish.scoreText.cacheAs = 'bitmap'; fish.scoreText.x = fish.scoreGold.width + fish.scoreGold.x - 4; fish.scoreText.y = fish.scoreGold.y + 2; fish.scoreText.text = price; this.scoreBox.addChild(fish.scoreText); ...
来源: Laya_社区 发布时间: 20180517
...ont = new Laya.BitmapFont(); this.mBitmapFont.loadFont("../laya/assets/txt.fnt", new Laya.Handler(this.onLoaded)); } private onLoaded():void { this.init(); } private init():void { this.mBitmapFont.setSpaceWidth(10); Laya.Text.registerBitmapFont(this.mFontName, this.mBitmapFont); var txt:Laya.Text = ...
来源: Laya_社区 发布时间: 20171028
...字体怎么用UI提供的图片制作 位图文字用什么工具制作.fnt文件能提供下吗 问题状态 最新活动: 2017-07-30 10:43 浏览: 1168 关注: 2 人 fftidus • 2017-07-30 10:55 我想添加一个方法,把handler.create功能绑定进去,让fun()直行的时候自动判断...
来源: Laya_社区 发布时间: 20170730
...eGold); // 价格 fish.scoreText = new Laya.Text(); fish.scoreText.font = "fnt_10103"; fish.scoreText.x = fish.scoreGold.width + fish.scoreGold.x - 4; fish.scoreText.y = fish.scoreGold.y + 2; fish.scoreText.text = price; this.scoreBox.addChild(fish.scoreText); 两种效果 就是 Text 这个引起...
来源: Laya_社区 发布时间: 20180517
...n:发现了新的问题.就是当我做了一个位图字体之后 .png和.fnt的名字必须要一致,但是当我启动版本控制之后,他们的名字就不一致了.必须手动修改才能使用!!! Laya_Aaron • 2019-01-04 14:12 @189*****043:手动改吧
来源: Laya_社区 发布时间: 20181130
...时候发给你 第二个问题 位图字体的配置文件编码是utf8 .fnt后缀的自动用utf8 其他的 需要自己改一下适配库加判断处理下 2018-01-03 0 3 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: https://ask.layabox.com/question/10252 这里有你想要的 2018-...
来源: Laya_社区 发布时间: 20180103
...{url:"res/atlas/comp.atlas", type:Loader.ATLAS}, {url:"bitmapFont/timeFont.fnt", type:Loader.FONT}, {url:"bg/hallroom-bg.png", type:Loader.IMAGE}, {url:"bg/hallrom.json", type:Loader.JSON}, ]; Laya.loader.load(altsArr, Handler.create(this, onComplete)); function onComplete():void{ trace(...
来源: Laya_社区 发布时间: 20180518
...新建一个与位图字体同名的文件夹,将位图软件生成的.fnt和.png放到该文件夹里,直接设置你的font为该字体名即可! 2、如果是网上下载的ttf字体,目前无法直接再IDE下使用,需要通过index.html先进行嵌入,然后注册后在代码中进...
来源: Laya_社区 发布时间: 20170217
...了下,不行。。 Monica • 2017-11-23 18:39 @xx1076577400:h5/oamun.fnt应该是没有问题的....如果不可以麻烦上传一个可以运行的Demo(不要上传整个项目,能复现你说的问题即可) xx1076577400 • 2017-11-23 18:42 @Monica:代码已经上传了,在我的回...
来源: Laya_社区 发布时间: 20171123
...merFont = new Laya.BitmapFont(); timerFont.loadFont('res/timerfont.fnt', Laya.Handler.create(this, () => { Laya.Text.registerBitmapFont('Name', timerFont); Laya.loader.load("res/atlas/comp.atlas", Handler.create(null, onLoaded)); })); } function o...
来源: Laya_社区 发布时间: 20180509