• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 217 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)

51. 加载成功要怎样判断呢? [ 74%]

加载成功要怎样判断呢? 不管是Laya.loader.load(url, onLoaded, ...) 还是Laya.loader.on(Event.COMPLETE, this, onLoaded); 加载失败都会到onLoaded,那怎么区分是不是加载成功? 2017-03-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果...

来源: Laya_社区 发布时间: 20170325

52. 3d模型预加载后二次调用报错 [ 73%]

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

53. 资源加载问题 [ 73%]

资源加载问题 无限资源加载问题  Uncaught Error: LoaderManager:unknown file(res/scene/scene.ls) extension with: ls.     at LoaderManager.__proto._create (laya.core.js:13205)     at LoaderManager.__proto.create (laya.core.js:13173)     at LayaGame.<anonymous> (LayaGame.ts:60...

来源: Laya_社区 发布时间: 20190129

54. ts 空项目 版本1.7.20 下的load 调用2次 第二次 失效 [ 73%]

...效 var assets =[]; assets.push({url:"res/atlas/UI/Shop.atlas",type:Laya.Loader.ATLAS}) assets.push({url:"res/atlas/setting.atlas",type:Laya.Loader.ATLAS}) assets.push({url:"res/atlas/shop_buy.atlas",type:Laya.Loader.ATLAS}) assets.push({url:"res/atlas/build.atlas",type:Loader.ATLAS}) Laya.loader.lo...

来源: Laya_社区 发布时间: 20181106

55. 二进制文件打包后,读取不到zip包内的文件 [ 73%]

...要代码如下    let loaditem = [{ url: "test.zip", type: Laya.Loader.PLFB }]         Laya.loader.load(loaditem, Laya.Handler.create(this, function (res) {             let item = 'res/layabox.png'             let getres = Laya.loader.getRes(item...

来源: Laya_社区 发布时间: 20210604

56. 如何显示动画ani [ 73%]

...成了.ani 文件,可是怎么在主页面上显示啊。 教程中 Laya.loader.load("./res/atlas/ui.atlas",Handler.create(this,onLoaded));这个ui.atlas 死活没看见啊。   代码复制了,不行 啊,坑在哪里???? package{import laya.net.Loader;import laya.utils.Handler;import...

来源: Laya_社区 发布时间: 20190708

57. IOs使用手动删除本地资源再次进去加载问题 [ 73%]

...ginLoad(){ var res_array = [ {url : "res/atlas/loading.atlas", type : Laya.Loader.ATLAS}, {url : "res/atlas/person.atlas", type : Laya.Loader.ATLAS}, {url : "loading/progress.png", type : Laya.Loader.IMAGE}, {url : "loading/progress$bar.png", type : Laya.Loader.IMAGE}, ] Laya.loader.load(res_array, ...

来源: Laya_社区 发布时间: 20180803

58. 【BUG】加载的url中有错误url时,laya偶现加载complete不回调 [ 72%]

... { url: this.zombie_anim_path4 }, { url: this.zombie_anim_path5 }, ]; Laya.loader.retryNum = 0; Laya.loader.create(res3DArr, Laya.Handler.create(this, this.onRes3DLoaded), null);   结论:onLoad时checkNext触发endLoad,会重置customParse属性,onError的时候没有触发这个逻辑,导...

来源: Laya_社区 发布时间: 20180305

59. version.json版本文件会加载缓存的,看了源码也没有忽略缓存 [ 72%]

...) {             ResourceVersion.type = type;             ILaya.loader.load(manifestFile, Handler.create(null, ResourceVersion.onManifestLoaded, [callback]), null, Loader.JSON);         } load没有设置忽略缓存   应该 static enable(manifestFile, callback, type = 2) {      ...

来源: Laya_社区 发布时间: 20201218

60. 预加载音频文件遇到的问题 [ 72%]

...载音频的代码(JS飞机大战示例), //加载声音资源 Laya.loader.load("res/sound/bloodstream_bg.mp3", Laya.Handler.create(this, onLoadedSound), null, Laya.Loader.SOUND); // })(); function onLoadedSound(){ Laya.SoundManager.playMusic("res/sound/bloodstream_bg.mp3", 0, Laya.Handler.cre...

来源: Laya_社区 发布时间: 20180320