大约有 285 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...要这么做 2.ziti类中预加载字体,加载完成回调你写的是this.onLoaded。导致下边onLoaded函数根本就没有走,也更走不到init函数中 3.init函数中你给test的text赋值为this.labelFont.text,根据你这一步的做法可以猜到你是想用UI界面中的那个...
来源: Laya_社区 发布时间: 20170829
...lor='#ff0000'>欢迎你的加入</span>"; this.addChild(html); 2018-03-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: https://ldc.layabox.com/doc/?na...
来源: Laya_社区 发布时间: 20180303
...o.png", "res/mainpage/BtnYes.png" ]; Laya.loader.load(urls, Handler.create(this, onAssetLoaded), Handler.create(this, onLoading, null, false), Loader.TEXT); Laya.loader.on(Event.ERROR, this, onError); private function onAssetLoaded(texture:Texture):void{ //console.log("111...
来源: Laya_社区 发布时间: 20171001
仅在Android微信小游戏下图片错乱 static preLoadPublicAssets(){ this.sAssetList = Loader.getRes("file_list.json") Laya.loader.load("res/ui/share@atlas0.png", Handler.create(this, this.onLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets in...
来源: Laya_社区 发布时间: 20180609
...改方案: 将 CharRender_Canvas 类的 set canvasWidth 方法的 ``` this.ctx.setTransform(1, 0, 0, 1, 0, 0); this.ctx.scale(this.lastScaleX, this.lastScaleY); ``` 修改为 ``` this.ctx.setTransform(this.lastScaleX, 0, 0, this.lastScaleY, 0, 0); ``` 2020-09-17 1 2 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20200901
...变成了window,所以你需要绑定下作用域。onAssetsLoaded.bind(this) 2017-09-27 1 4 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 你AS中是怎么写的? 2017-09-27 0 1 分享 微博 QZONE 微信 ljy328803417 赞同来自: 如图 2017-09-27 0 7 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170927
...1-28 18:50 问下 canvasToTempFilePath要在哪里调用啊? 里面有个this:string 找了n久没找到不报错的调用方法 A • 2018-11-28 18:52 canvasToTempFilePath我用来做截图分享的 柒汐夜 • 2018-11-29 10:48 如果只是要分享的话,生成的缓存文件路径传给分...
来源: Laya_社区 发布时间: 20181122
...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { this.createLabel("#FFFFFF", null).pos(30, 50); this.createLabel("#00FFFF", null).pos(290, 50); this.createLabel("#FFFF00", "#FFFFFF").pos(30, 100); this.createLabel("#000000", "#FFFFFF"...
来源: Laya_社区 发布时间: 20180529
....Image; var WID = 373, HEI = 85; function Item() { Item.__super.call(this); this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box); // 主要逻辑代码 var Stage = Laya.Stage; var Li...
来源: Laya_社区 发布时间: 20180731
...{ htmlvideo:Laya.HtmlVideo; constructor() { Laya.stage.on(Laya.Event.CLICK,this,this.onClick); } onClick(){ this.initVideo(); } initVideo() { this.htmlvideo = new Laya.HtmlVideo(); this.htmlvideo.setSource("https://www.layaair.com/3.x/de ... ot%3B,1); this.htmlvideo.video.addEventListener("loadedmet...
来源: Laya_社区 发布时间: 20240305