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

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

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

【BUG】加载的url中有错误url时,laya偶现加载complete不回调 Bug代码如下,当第一个url是错误的,并且是lh类型时,会导致complete回调不走。具体见附件的demo。原因是onerror时没有重置customParse属性为false。 var res3DArr = [ { url: this.error_...

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

22. UI界面加载有哪些回调方法可用 [ 92%]

UI界面加载有哪些回调方法可用 Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); 类似于this.onLoaded函数,还有哪些生命周期相关的回调呢。 我想在UI完全加载完毕后,完成一些init操作,this.onLoad...

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

23. on 事件里,除了可以传递this,怎么给回调里传入其他的数据呢? [ 92%]

on 事件里,除了可以传递this,怎么给回调里传入其他的数据呢? 2018-01-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: https://ask.layabox.com/question/3125   2018-01-...

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

24. Laya.loader.create中的progress回调好像不准确? [ 92%]

Laya.loader.create中的progress回调好像不准确? 如图,我加载二十多M的资源(大概二三十个文件),进度回调只有一次,是不是这个回调有问题?   附件 : --> 2018-03-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

25. UI 控件多次调用 RESIZE 回调问题 [ 92%]

UI 控件多次调用 RESIZE 回调问题 var a = new Laya.Box(); a.left = a.top = a.right = a.bottom = 0; a.on(Laya.Event.RESIZE, this, () => { console.warn(" resize ===== "); }) Laya.stage.addChild(a); Laya.timer.loop(1000, this, () => { a.addChild(new Laya.Box()); }); --------------- 测...

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

26. Tween 缓动过程有触发回调函数么 [ 91%]

Tween 缓动过程有触发回调函数么 Tween 缓动过程有触发回调函数么 2018-01-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 9 个回复 Laya_Aaron 赞同来自: 第二个参数:  props 变化的属性...

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

27. tiledmap有时尺寸不正确 [ 91%]

...候启动的时候地图尺寸会变大(会调用到注册的RESIZE事件回调函数),大部分时候是正常的(不会调用到RESIZE事件回调函数),是我写的问题还是LayaAir有bug吗,我的代码是根据教程来写的,现附上代码export class Scene{ // 当前场景的...

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

28. Laya.loader.create 进度回调函数执行两次!!! [ 90%]

Laya.loader.create 进度回调函数执行两次!!! Laya.loader.create("Main/SMain.ls",Laya.Handler.create(this,this.on3DComplete),Laya.Handler.create(this,this.onProgress,null,false)); Manager.prototype.onProgress = function(value) { console.log("value=="+Math.floor(value*100)+"%"); }   输出...

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

29. 两个物体 ,如果在update里修改其中一个物体的rotationEuler,会触发另一个物体的onTriggerEnter回调 [ 90%]

...中一个物体的rotationEuler,会触发另一个物体的onTriggerEnter回调 我把Laya版本更新到 2.7 后发现 onTriggerEnter的回调 可能有些问题, 如图中,首先给黑色小牛里的一个添加了Collider的节点添加onTriggerEnter的脚本监听, 当我不更改 红色小人...

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

30. JS里面定义一个函数,无法使用Laya.Handler.creat回调 [ 90%]

JS里面定义一个函数,无法使用Laya.Handler.creat回调 代码运行到Laya.Handler.create时候提示onTxtLoad is undfine.请教应该怎么定义? export default class LocalTxt{ constructor() { LocalTxt.Instance = this; } onTxtLoad(aText){ console.info("dfasd"); } initTxt(){ Laya.load...

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