大约有 47 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
重大问题!!!IOS手机使用Laya.loader.load加载资源,无网络情况下加载,没有回调!!! 重大问题!!!IOS手机使用Laya.loader.load加载资源,无网络情况下加载,没有回调!!! 复现步骤: 1. 启动程序 2. 关闭ios手机网络(移...
来源: Laya_社区 发布时间: 20190331
关于资源加载Laya.loader的问题 目前laya加载资源一般是用这种处理方式: Laya.loader.load(res, new Handler(caller, callBack)); 这里隐藏了一个问题,就是caller 被 Laya.loader 内某个成员持有引用,加载完成触发callBack后才释放。 如果网络较差...
来源: Laya_社区 发布时间: 20180510
...有一个a.ani文件,这个a.ani需要用到b.json图集。 先用Laya.loader.load加载b.json图集,然后在加载完成的处理函数里面new一个Animation,将a.ani显示出来 过一会移除a.ani,并且用Laya.loader.clearRes删除b图集 又过一会,重新用Laya.loader.loa...
来源: Laya_社区 发布时间: 20180227
...let resArr = [ {url:"wxlocal/enemy.png",type:Laya.Loader.IMAGE}, {url:"wxlocal/bg2.jpg",type:Laya.Loader.IMAGE} ]; Laya.loader.load(resArr, Laya.Handler.create(null, onLoaded)); function onLoaded(): void { Laya.URL.basePath ="https://xxx....
来源: Laya_社区 发布时间: 20191122
...: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同来自: Laya.loader.load方法加载文件时,如果网络中断,在尝试加载失败后会触发Laya.loader.on("error",this,onLoader); function onLoaded(){ } 不知道你是怎么写的,我们自己做项目都是这样做的...
来源: Laya_社区 发布时间: 20180402
...的版本版本管理(会重命名文件名称的) 例子代码: LoadError(){console.log("LoadError")} LoadOK(){console.log("LoadOK")} Laya.loader.on(Laya.Event.ERROR,this,this.LoadError) Laya.loader.load("不存在的图片URL",Laya.Handler(this,this.LoadOK)); 发布成微信小...
来源: Laya_社区 发布时间: 20180920
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
...动画进行单独处理?还是不允许把动画放进预制体? Laya.loader.load("prefab/gk2v1.json",Laya.Handler.create(this,function(pref:Laya.Prefab){ var gkpref:Laya.Prefab = new Laya.Prefab(); gkpref.json = pref; var OBJ = Laya.Pool.getItemByCreateFun("gk2v1",gkpref.create,gkpref); this.S...
来源: Laya_社区 发布时间: 20201022
...览: 3508 关注: 3 人 逸辰 • 2023-07-19 22:52 onAwake(): void { Laya.loader.load( //先加载本场景要用的 ["resources/UI/image.png", "resources/UI/progress.png", "resources/UI/progress$bar.png","resources/UI/images/dsgame/banner2.jpg"] ).then(() =&...
来源: Laya_社区 发布时间: 20230713
... var imgArr = ; imgArr.push({url:"cont/cpf1.jpg",type:Loader.IMAGE}); imgArr.push({url:"cont/cpr1.jpg",type:Loader.IMAGE}); imgArr.push({url:"cont/cps1.jpg",type:Loader.IMAGE}); imgArr.push({url:"cont/cpt1.jpg",type:Loader.IMAGE}); ...
来源: Laya_社区 发布时间: 20160815