大约有 398 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0082 秒)
用Loader加载完atlas,然后使用animation播放问题 this._load = new Laya.Loader() this._load.on(Laya.Event.ERROR, this, this.onError); this._load.on(Laya.Event.COMPLETE, this, this.loadComplete); this._load.load(this._data.url, Laya.Loader.ATLAS, true); 加载完成后 this._ani = new Animat...
来源: Laya_社区 发布时间: 20171212
...gress: Progress; Socket: Socket; arr = [ { url: "images/1.jpg", type: Laya.Loader.IMAGE } , { url: "images/2.jpg", type: Laya.Loader.IMAGE } , { url: "images/3.jpg", type: Laya.Loader.IMAGE } , { url: "images/4.png", type: Laya.Loader.IMAGE } , { url: "images/5.jpg", type: Laya.Loader.IMAGE } , { ur...
来源: Laya_社区 发布时间: 20171217
...片,所以把图片放到了服务器上,但是在app中,使用Laya.loader.load 加载的资源它并不会缓存到本地,每次都要重新下载,有没有什么api是可以手动缓存到本地的? 当前我自己写了一个下载方法,虽然文件保存成功了,但是用Lay...
来源: Laya_社区 发布时间: 20190731
...式? var assets = []; assets.push( { url: "res/fontWord.fnt", type: Laya.Loader.FONT }); Laya.loader.load(assets, Laya.Handler.create(this, onAssetsLoaded)); function onAssetsLoaded(){ var bitmapFont = new Laya.BitmapFont(); bitmapFont.loadFont("res/fontWord.fnt"); //必出错 } 只要使用...
来源: Laya_社区 发布时间: 20170329
启用版本管理后,Laya.loader.load加载在微信web开发者工具触发不了回调 启用版本管理后,文件都带了hash, var resArray = [ {url: "res/atlas/common.atlas", type: Laya.Loader.ATLAS}, {url: "hall/1_login/login_bg.png", type: Laya.Loader.IMAGE}, {url: "hall/1_login/Bott...
来源: Laya_社区 发布时间: 20180426
...干个文件压缩成一个zip,下载通过JSZip解压后,如何用Laya.loader再去初始化呢? let zip = new JSZip(); 我的需求是这样,比如有个界面,aa.scene,如果我提前通过Laya.loaer 加载了这个aa.scene,Laya.loader里面已经有了缓存,之后再open时候就...
来源: Laya_社区 发布时间: 20190425
...,临时你也可以通过修改代码来添加保护:var data:*; data=Loader.getRes(_url); if (!data) { event(Event.ERROR,"file not find"); return; } //保护修改-----start------------------ var atlasData:Object = Loader.getAtlas(_atlasPath); if(!atlasData) { event(Event.ERROR,"file not find")...
来源: Laya_社区 发布时间: 20180907
Laya.loader.load 加载场景报错 Laya.loader.load( 模型url, Laya.Handler.create(this, function(){ this.scene = Laya.loader.getRes(模型url); Laya.stage.addChild(this.scene); }),null, null, 1, true, "scene1"); 执行后,浏览器报 : laya.core.js:13290 Uncaught TypeError: node._setParent ...
来源: Laya_社区 发布时间: 20181208
2d资源和3d资源没有统一的加载接口? 加载2d Laya.loader.load 加载3d Laya.loader.create 有没有统一的接口呢? 2018-11-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron ...
来源: Laya_社区 发布时间: 20181128
...的资源地址。</p> * <p>因为返回值为 LoaderManager 对象本身,所以可以使用如下语法:Laya.loader.load(...).load(...);</p> * @param url 要加载的单个资源地址或资源信息数组。比如:简...
来源: Laya_社区 发布时间: 20180502