大约有 1,198 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0060 秒)
Laya_社区(1142) Laya2.0_文档(20) Laya3.0_文档(11) Laya2.0_示例(8) Laya_示例(8) Laya3.0_api(5) laya_api(2) Laya2.0_api(2)
...ion 的createFrames 使用已经加载的图集缓存动画失败 请问下loader如何强制加载一个文件,避免浏览器的缓存 【BUG备忘录】关于Tween动画无法正常作用问题-解决办法 请教下微信小游戏的内存和数据缓存? 分享:LayaAir下如何获取图...
来源: Laya_社区 发布时间: 20180531
3d模型预加载后二次调用报错 使用Laya.loader.create 预加载,第一次用Laya.Sprite3D.load("xxx.lh").getChildAt(0) 可以创建,第二次再调用Laya.Sprite3D.load("xxx.lh").getChildAt(0) 创建就返回undefined了,help~ 2018-03-07 添加评论 免费帖 --> 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20180307
...小游戏下图片错乱 static preLoadPublicAssets(){ this.sAssetList = Loader.getRes("file_list.json") Laya.loader.load("res/ui/share@atlas0.png", Handler.create(this, this.onLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets inited !!!!") console....
来源: Laya_社区 发布时间: 20180609
...create(this, beginLoad)) function beginLoad() { //加载LOADING资源 Laya.loader.load([{ url: "res/atlas/icon.atlas" }, { url: "res/atlas/human.atlas" }], Laya.Handler.create(this, progress, null, false), null, Laya.Loader.ATLAS) } function progress() { (function loading() { Laya.loader.load([{ url...
来源: Laya_社区 发布时间: 20180710
Laya2.0资源加载慢 Laya2.0加载资源速度慢, Laya.loader.load一个简单文件加载耗时0.3秒以上, Laya1.0只要0.1秒就能加载完成, 这个怎么优化 附件 : --> 2019-07-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20190705
...les/graceful-fs/fs.js:1:37) at Module._compile (internal/modules/cjs/loader.js:956:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10) at Module.load (internal/modules/cjs/loader.js:812:32) at Function.Module._load (internal/modules/cjs/loader.js:724:...
来源: Laya_社区 发布时间: 20210420
...main.ts: if(Laya.Browser.onMiniGame){ //加载一个json和图集 Laya.loader.load(["res/atlas/test.atlas"],Laya.Handler.create(null,function(){ //加载完成 //使用接口将图集透传到子域 Laya.MiniAdpter.sendAtlasToOpenDataContext("res/atlas/test.atlas"); }));子域main.ts: import GameC...
来源: Laya_社区 发布时间: 20200314
...; //设置stage颜色s Laya.stage.bgColor = "#ffffff"; //加载资源 Laya.loader.load("res/atlas/comp.json",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) })(); function onLoaded(){ var _start = new start(); Laya.stage.addChild(_start); } })(); var start = (function(_super){ function st...
来源: Laya_社区 发布时间: 20181220
...fairygui界面报错, fgui.UIConfig.packageFileExtension = "json"; Laya.loader.load([ { url: "res/Basics_atlas0.png", type: Laya.Loader.IMAGE }, { url: "res/Basics.json", type: Laya.Loader.BUFFER } ], Laya.Handler.create(this, this.onLoaded)); } onLoaded(): void { console...
来源: Laya_社区 发布时间: 20191030
...然后在某个时机需要清理这些加载的图片,用了 Laya.loader.cancelLoadByUrl(_urlVo.url); Laya.loader.clearTextureRes(_urlVo.url); Laya.loader.clearRes(_urlVo.url) 但是在某些网络或者手机很卡的情况下,并不能全部移除掉,还会继续下载残留在内...
来源: Laya_社区 发布时间: 20200420