大约有 643 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0053 秒)
Laya_社区(588) Laya2.0_文档(19) Laya3.0_文档(11) Laya2.0_示例(8) Laya_示例(8) Laya3.0_api(5) laya_api(2) Laya2.0_api(2)
...问题有两个方案可以解决: 第一个就是在destory的时候用Loader.clearRes清理下资源; 第二个就是更新的最新版本,默认通过Sprite3D的load加载的资源不缓存,在destory的时候就不会存在你描述的这个问题! 2016-12-17 0 0 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20161217
已上传demo window["wx"].env.USER_DATA_PATH 下的资源用loader加载不了 资源文件用 var fileManager = window["wx"].getFileSystemManager(); fileManager.access() 这个接口检查过是存在的 附件 : --> Evolution_test.zip 2019-06-28 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20190628
...rt laya.ani.AnimationState; import laya.display.Animation; import laya.net.Loader; import laya.ui.Image; import laya.utils.Handler; import view.TestView; public class LayaUISample { public function LayaUISample() { //初始化引擎 Laya.init(600, 400); //Laya.loader.load([{url: "res/atlas/char_wuda...
来源: Laya_社区 发布时间: 20170220
... "res/atlas/role/monster/monsterA/move.atlas" ]; Laya.loader.load(aniArr, Handler.create(this, onAni), null, Loader.ATLAS); private function onAni():void { var role:SimpleRole = new SimpleRole(); Laya.stage.addChild(role); } SimpleRole类: public fun...
来源: Laya_社区 发布时间: 20170619
...源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),1...
来源: Laya2.0_文档 发布时间: 20210715
...。 新建一个粒子,加载就报错。 playQiPaoParticle() { Laya.loader.load('noLanguage/test.part', Laya.Handler.create(this, this.onAssetsLoaded), null, Laya.Loader.JSON); } onAssetsLoaded(settings: Laya.ParticleSetting) { let sp = new Laya.Particle2D(settings); // sp.emitter.start(); /...
来源: Laya_社区 发布时间: 20191227
...加载fnt动态字体报错 chrome下没问题,加载的时候就是Laya.loader.load的方式加载,请问有没有什么解决办法,IDE是1.7.7beta 附件 : --> 2017-07-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20170731
...行缓存处理,然后下次播放声音时直接从缓存获取。 Laya.loader.load([{url:"xxx.mp3",type:Loader.SOUND}],Handler.create(this,onComped)) 2016-12-13 1 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 feini 相关问题 两个...
来源: Laya_社区 发布时间: 20161213
...接 提交 1 个回复 cuixueying 赞同来自: 预加载资源请用Laya.Loader.load,卸载资源请用Laya.Loader.clearRes,具体示例请参考:http://layaair.ldc.layabox.com ... leton 2017-03-20 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先...
来源: Laya_社区 发布时间: 20170320
... // 程序入口 class GameMain{ constructor() { Laya.init(1280,720); Laya.loader.load([{url:"res/atlas/comp.json",type:Laya.Loader.ATLAS}],Laya.Handler.create(this,this.loaded,null)); } private loaded():void{ var img:Laya.Image = new Laya.Image(); img.skin = "comp/img_pro.png"; Laya.stage.addChild(...
来源: Laya_社区 发布时间: 20170327