大约有 205 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0058 秒)
Laya_社区(128) Laya2.0_文档(34) Laya3.0_api(21) Laya3.0_文档(15) Laya2.0_示例(3) laya_api(2) Laya2.0_api(2)
....alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.loader.load("assets/bg.jpg", Handler.create(this, loadCompleteHandler)); } private function loadCompleteHandler():void { var bg:Image = new Image("assets/bg.jpg"); Laya.stage.addChild(bg); }这张图在三星平板上可以...
来源: Laya_社区 发布时间: 20171124
...同样的代码,第一次创建就可以显示动画,然后当使用了Loader.clearRes之后再次创建就怎么都显示不了,是哪里用错了么?求指点 附件里上传了测试工程,打开后先按A键可以看到屏幕有两条鱼,然后再按空格将其彻底移除,然后...
来源: Laya_社区 发布时间: 20180424
... 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: Laya.loader.load才是预加载(预加载到缓存),使用的时候就是你上面写的,直接.loadAni("birdami_86.sk"),,这时候loadAni的资源就是缓存下的! 2017-08-29 0 0 分享 微博 QZONE 微信 为什...
来源: Laya_社区 发布时间: 20170829
...作以前我会先清理上一个动画的资源 this.anim.clear(); Laya.loader.clearTextureRes( url); 别抢小虎 • 2018-05-08 10:52 现在游戏逻辑有点多,只能这样描述一下流程 w1114367261 • 2018-05-08 14:36 你清理上一个动画的资源是不是把整个动画的图集都...
来源: Laya_社区 发布时间: 20180507
...图集文件不存在本地包,而是存在cdn上,这时先调用Laya.loader.load方法将文件加载完,然后通过: __JS__('wx').postMessage({url:url,data:tempData,isLoad:"filedata"}); 说明: url是图集文件的路径; tempData:是图集文件的json数据; isLoad:为filedata...
来源: Laya_社区 发布时间: 20180525
... // 创建一个用于存放位图数组的临时精灵 let texture = Laya.loader.getRes(options.srcPath+options.srcName+".png"); // 读取图集生成大切片 let textureIns = Laya.Texture.create(texture, aniProps.res[aniProps.mc[options.srcName].frames[i].res].x, aniProps.res[aniProps.mc[options....
来源: Laya_社区 发布时间: 20190215
...关于遮罩的用法,在哪块可以找到? Laya.URL.basePath与Laya.loader.load用法 问题状态 最新活动: 2019-09-26 13:14 浏览: 919 关注: 1 人
来源: Laya_社区 发布时间: 20190926
...id { const { x, y, width, height } = this.box Laya.loader.load('comp/image.png').then(v=>{ const texture = this.box.drawToTexture(width, height, x, y) as Laya.Texture this.snapshot.texture = texture }); } 2024-06-05 0 0...
来源: Laya_社区 发布时间: 20240425
...的URL,因为这个URL没有后缀,所以加载时要写上类型 Laya.loader.load([{url:url,type:"image"}], Handler.create(this,function(){ //接下来 }));5.接下来回调,卸载之前的资源 Laya.loader.clearRes(oldUrl);6.加载Texture2D 这样就原图片地址是个Texture2D,生...
来源: Laya_社区 发布时间: 20181221
... llc 赞同来自: 碰到相同的问题,解决了,供参考: Laya.loader.load(chapterBG, Laya.Handler.create(this, this.onBGLoaded, [chapterBG])/* , Laya.Handler.create(this, this.onBGLoadProgress) */); 第三个参数打开在某些条件下会出t._addReference is not a function 可能是...
来源: Laya_社区 发布时间: 20180423