大约有 1,250 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0056 秒)
Laya_社区(1077) Laya2.0_文档(91) Laya3.0_文档(41) Laya3.0_api(21) Laya2.0_示例(9) Laya_示例(7) laya_api(2) Laya2.0_api(2)
小游戏:Laya.loader.load加载素材后异常 各位大神请教个问题: Laya.loader.load("ui/ui.atlas",****** 通过上面的代码,加载图集,web上面正常,发布到小游戏的时候没有加载到资源。 我的ui文件夹在根目录。 2018-07-03 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20180703
...的链接 提交 3 个回复 cuixueying 赞同来自: 189*****192 Laya.loader.load([{url:"res/atlas/comp.json",type:Loader.ATLAS},{url:"comp/btn_queding.png",type:Loader.IMAGE}], Handler.create(this, onAssetLoaded), null);comp.json是预加载的图集下的资源,你既然是不打包,表示...
来源: Laya_社区 发布时间: 20170607
...资源 this.assets.push({ url: "lobby/zhujiemian_ditiao.png", type: Laya.Loader.IMAGE }); Laya.loader.load(this.assets, Laya.Handler.create(this, this.onAssetsLoaded) , Laya.Handler.create(this, this.progress, [], false)); 在加载的时候ios的微信小游戏是没有问题的,但是到...
来源: Laya_社区 发布时间: 20180824
... 2017-05-10 10:25 @cuixueying:好的,谢谢。如果不手动释放Laya.loader里面的资源的话,loader会不会在某个环节自动释放掉一些资源呢?比如我用一个url创建了两个Laya.Image对象,一个对象destroy后,另一个对象就变成空白了。。。 cuixueying...
来源: Laya_社区 发布时间: 20170509
...00631用户 赞同来自: //加载IDE指定的场景 Laya.loader.load([{url:"minastc.config.json",type:Laya.Loader.JSON}],new Laya.Handler(this,function(){ this.astcconfig = Laya.loader.getRes("minastc.config.json"); for(var key in this.astcconfig...
来源: Laya_社区 发布时间: 20221013
...接 提交 1 个回复 Monica - 知识达人 赞同来自: 建议你输出Loader.loadedMap看下已经加载的资源列表中是否有你预加载的这个资源! 2017-10-20 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 lvfy 相关...
来源: Laya_社区 发布时间: 20171020
...这个文件放到atlas下,把url改成 hero.graphics.drawTexture(Laya.loader.getRes("res/atlas/role/hero_03.png")); 2017-11-20 0 0 分享 微博 QZONE 微信 wudi199553 赞同来自: 刚刚你这一行报错,我就把你这一行代码改了,我不清楚,这是不是你想要的效果 20...
来源: Laya_社区 发布时间: 20171120
...ER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load([texture1, texture2], Handler.create(this, onAssetsLoaded)); })(); function onAssetsLoaded() { ape = new Sprite(); Laya.stage.addChild(ape); ape.pivot(55, 72); ape.pos(200, 200); // 显示默认纹理 switchTextur...
来源: Laya2.0_文档 发布时间: 20210715
...as/ui.atlas"}, {res:"res/ui/back.png",type:Loader.IMAGE} ]; Laya.loader.load(resArr,Handler.create(this,this.onLoaded)); } private function onLoaded():void{ //显...
来源: Laya_社区 发布时间: 20180106
...网络资源 var resArray = [ { url: "res/atlas/images.atlas", type : Laya.Loader.ATLAS}, // { url: "res/swf/flash.json", type: Laya.Loader.JSON}, // { url: "images/background.png", type : Laya.Loader.IMAGE}, ]; Laya.loader.load(resArray, Laya.Handler.create(this, this.onLoaded2)); Laya.URL.ba...
来源: Laya_社区 发布时间: 20180531