大约有 2,615 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0074 秒)
Laya_社区(2308) Laya2.0_文档(106) Laya_示例(52) Laya3.0_api(51) Laya3.0_文档(47) Laya2.0_示例(43) laya_api(4) Laya2.0_api(4)
... at Function._getSprite3DHierarchyInnerUrls (laya.d3.js:32159) at Loader._onHierarchylhLoaded (laya.d3.js:32274) at EventHandler.runWith (laya.core.js:1000) at Loader.event (laya.core.js:1039) at Loader.complete (laya.core.js:18862) at Loader.onLoaded (laya.core.js:1...
来源: Laya_社区 发布时间: 20200824
...增。 【问题如下】: 问题1:clearRes释放资源之后,Laya.loader.load重新加载同一个资源为什么GPUMemory会不停的增加? 问题2:Laya.loader.clearRes之后,GPUMemory为什么不降低,如果clearRes不会释放内存,那这个接口的作用是什么? 【Demo...
来源: Laya_社区 发布时间: 20190307
...的销毁而一起销毁。这些残留下的资源需要分别使用`Laya.loader.getRes(url:String)`接口获取到资源(Resource)对象之后,再调用资源对象的`destroy()`方法进行销毁。但是这种方法是非常麻烦的。LayaAir2.0为了方便开发者,提供了`Resource.d...
来源: Laya2.0_文档 发布时间: 20210715
...片,所以把图片放到了服务器上,但是在app中,使用Laya.loader.load 加载的资源它并不会缓存到本地,每次都要重新下载,有没有什么api是可以手动缓存到本地的? 当前我自己写了一个下载方法,虽然文件保存成功了,但是用Lay...
来源: Laya_社区 发布时间: 20190731
...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
...叠加的实现 我用 var ape:Sprite = new Sprite(); var t:Texture = Laya.loader.getRes("res/bg.png"); ape.graphics.drawTexture(t,0,0); var t1:Texture = Laya.loader.getRes("res/wzq.png"); ape.graphics.drawTexture(t1,0,0); var t2:Texture = Laya.loader.getRes("res/rkfb.png"); ape.graphics.drawTexture...
来源: Laya_社区 发布时间: 20180605
...出资源无法加载未打包资源 如图设置 修改加载代码 Laya.loader.load([ { url: "res/atlas/comp.atlas", type: Loader.ATLAS }, { url: "unpack/comp/image.png", type: Loader.IMAGE }, { url: "test/TestPage.json", type: Loader.JSON }, ], Handler.create(this, this.on...
来源: Laya_社区 发布时间: 20171230
...源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); } private function graphicsImg():void { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台...
来源: Laya2.0_文档 发布时间: 20210714
...yaair中类的大小写规则有没有基本的说明文档 比如: Laya.loader.load("res/atlas/comp.json", Laya.Handler.create(null, onLoaded), null, Laya.Loader.ATLAS); Laya.loader.load(resArray, Laya.Handler.create(null,onLoaded)); loader与handler 2017-03-16 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20170316
...this._container = new Sprite(); Laya.stage.addChild(this._container); Laya.loader.load(["../bin/res/ui/progressBar.png", "../bin/res/ui/progressBar$bar.png"], Handler.create(this, this.onPreloaded)); }; LoadResource.prototype.onPreloaded = function () { this.initLoadData(); }; LoadResource.prototype...
来源: Laya_社区 发布时间: 20200924