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

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

301. 小游戏:Laya.loader.load加载素材后异常 [ 79%]

小游戏:Laya.loader.load加载素材后异常 各位大神请教个问题: Laya.loader.load("ui/ui.atlas",****** 通过上面的代码,加载图集,web上面正常,发布到小游戏的时候没有加载到资源。 我的ui文件夹在根目录。 2018-07-03 添加评论 免费帖 --> ...

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

302. button图片丢失 [ 79%]

...的链接 提交 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

303. Android小游戏加载不打包的图会卡资源 [ 79%]

...资源 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

304. 关于资源回收的问题 [ 79%]

... 2017-05-10 10:25 @cuixueying:好的,谢谢。如果不手动释放Laya.loader里面的资源的话,loader会不会在某个环节自动释放掉一些资源呢?比如我用一个url创建了两个Laya.Image对象,一个对象destroy后,另一个对象就变成空白了。。。 cuixueying...

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

305. demo中的2d和3d混合 加载ktx的资源 会白色的 其他ui没有问题 [ 79%]

...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

306. 未打包jpg图片预加载资源后,不使时用清理掉缓存,然后再次打开资源虽然预加载完成,可是图片却未加载进去(查看当前内存未增长)。 [ 79%]

...接 提交 1 个回复 Monica - 知识达人 赞同来自: 建议你输出Loader.loadedMap看下已经加载的资源列表中是否有你预加载的这个资源! 2017-10-20 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 lvfy 相关...

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

307. 加载资源时同时加载两遍 [ 79%]

...这个文件放到atlas下,把url改成 hero.graphics.drawTexture(Laya.loader.getRes("res/atlas/role/hero_03.png"));   2017-11-20 0 0 分享 微博 QZONE 微信 wudi199553 赞同来自: 刚刚你这一行报错,我就把你这一行代码改了,我不清楚,这是不是你想要的效果 20...

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

308. 显示与切换图片(JavaScript-LayaAir基础篇(JS)-位图) [ 79%]

...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

309. 按照打地鼠教程来无法正常加载资源 [ 79%]

...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

310. Laya.URL.basePath加载不到网络资源 [ 79%]

...网络资源 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