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

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

51. 回调函数... [ 81%]

回调函数... constructor(){ Laya.loader.load(this.skins, Handler.create(this, this.onUIAssetsLoaded)); } aaa() { } function onUIAssetsLoaded( this.aaa();//为什么回调函数能调用,undefined } 2017-06-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

52. 建议,Laya.Loader引入骨骼类型加载 [ 81%]

建议,Laya.Loader引入骨骼类型加载 建议,Laya.Loader引入骨骼类型加载,现在都是单独加载图片和数据,然后解析,没有办法一起放到记载页面中,感觉好费劲啊,建议官方可以在Laya.Loader引入骨骼类型加载,让后通过Laya.loader.getRes()可以直接...

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

53. 如何获取unity导出的摄像机 [ 81%]

...问过问题,基本没人答,结果都是我自己慢慢研究的 Laya.loader.create([{url:"land/main.lh"}],Laya.Handler.create(this,this.onCreateComplete));   再单独写个这个 onCreateComplete(){ var land = Laya.loader.getRes("land/main.lh"); this.scene.addChild(land); var camera = land.g...

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

54. 关于资源加载Laya.loader的问题 [ 80%]

关于资源加载Laya.loader的问题 目前laya加载资源一般是用这种处理方式: Laya.loader.load(res, new Handler(caller, callBack)); 这里隐藏了一个问题,就是caller 被 Laya.loader 内某个成员持有引用,加载完成触发callBack后才释放。 如果网络较差...

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

55. 为什么能加载多个模型 [ 80%]

...神们如何在场景内添加多个lm的文件。我按照文档中 Laya.loader.create("LayaScene_layabox/Library/unity default resources-Quad.lm",Laya.Handler.create(this,this.onCreateComplete)); Laya.loader.create("LayaScene_layabox/Library/unity default resources-Capsule.lm",Laya.Handler.create(...

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

56. Laya.Handler.create 回调 在魅族平台触发 [ 80%]

Laya.Handler.create 回调 在魅族平台触发 Laya.loader.create(res2[i], Laya.Handler.create(this, () => { console.log('触发回调') } 2020-12-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为...

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

57. 请问怎么监听在IDE中创建的UI中资源的加载进度呢 [ 80%]

...的加载进度呢 我在IDE中创建了整个游戏界面,然后通过loader去加载界面的配置文件:Laya.loader.load(['res/atlas/game.json'],Laya.Handler.create(this,Slot.onSourcesLoaded), Laya.Handler.create(this,Slot.onSourcesLoading,null,false),Laya.Loader.ATLAS);这样写似乎监听...

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

58. laya升级到2.0.0beat4版本,加载场景出现的bug [ 80%]

laya升级到2.0.0beat4版本,加载场景出现的bug 加载:Laya.loader.create("Laya/Conventional/Map_SCC.ls",Laya.Handler.create(this,this.LoadCompleteHandler)); 加载完成后: var scene3D:Laya.Scene3D = Laya.loader.getRes(this.mSceneName) as Laya.Scene3D; Laya.stage.addChild(scene3D); 异常:...

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

59. 在加载多个资源的时候,加载进度异常 [ 80%]

在加载多个资源的时候,加载进度异常 Laya.loader.load(["res/atlas/images.atlas", "res/atlas/f1.atlas", "res/atlas/f2.atlas", "res/atlas/f3.atlas", "res/atlas/f4.atlas", "res/atlas/f5.atlas"],   Laya.Handler.create(this, function(){ }),  Laya.Handler.create(this, function(e){    c...

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

60. Laya.SoundManager.playSound 无法播放出音效 [ 80%]

...能正常播放,也没有任何错误提示 然后尝试先调用Laya.loader.load("sfx/hit01.mp3",new Laya.Handler(this,this.onBgmComplete),null,Laya.Loader.SOUND);然后在onBgmComplete的回调里面再调用播放,就会提示 [warn]Retry to load: sfx/hit01.mp3 [error]Failed to load: sfx/h...

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