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

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

1. laya.utils.Handler_API3.0 [ 100%]

...c/Protected All Inherited Externals Only exported Menu Globals "laya/utils/Handler" Handler Class Handler Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 Handler 对象不再使用后,可以使用 Handler.recover() 将...

来源: Laya3.0_api 发布时间: 20231115

2. laya.utils.Handler [ 99%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames HandlerProperties | Methods Packagelaya.utilsClasspublic class HandlerInheritanceHandler Object Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 ...

来源: laya_api 发布时间: 20170929

3. laya.utils.Handler [ 99%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames HandlerProperties | Methods Packagelaya.utilsClasspublic class HandlerInheritanceHandler Object Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 ...

来源: Laya2.0_api 发布时间: 20190513

4. Laya.Handler.create和new Laya.Handler有啥区别 [ 98%]

Laya.Handler.create和new Laya.Handler有啥区别 this.sList.mouseHandler = Laya.Handler.create(this, this.onMouse);//鼠标响应事件 this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应. 2017-04-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

5. 关于new Handlerhandler.create的使用问题 [ 97%]

关于new Handlerhandler.create的使用问题 官方文档的内存优化章节中,提到了除了使用new Handler来完成异步回调,还可以使用handler.create的方式(该方法使用了内置对象池管理),并且举了例子说明了create的好处。我想问的是,这...

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

6. 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() [ 97%]

为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create()? 我测试了一下,如果类似于 tab.selectHandler = Laya.Handler.create(tab, this.onSelect); ...

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

7. Laya.Timer.clear 的源码可能有个问题。 [ 96%]

...在某个情况下clear掉这个执行,clear掉的只是最后入栈的Handler。情景如下:  //我想要每隔1s, 执行一次 b 函数(行为),最多执行6次 for(let i = 0; i < 6; i++){ Laya.timer.once(i * 1000, this, this.b, [i], false); } //遇到一些需求变化,我希望在2s...

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

8. Timer Handler被覆盖 [ 96%]

Timer Handler被覆盖   class Timer   _getHandler(caller, method) { var cid = caller ? caller.$_GID || (caller.$_GID = ILaya.Utils.getGID()) : 0; var mid = method.$_TID || (method.$_TID = (Timer._mid++) * 100000); return this._map[cid + mid]; }   当游戏玩的功能多时间长了,随着cal...

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

9. Laya.Handler为什么注册不成功? [ 96%]

Laya.Handler为什么注册不成功? this.scrollView.mouseHandler = Laya.Handler.create(this,this.onScrollMouse) this.scrollView.mouseHandler = new Laya.Handler(this, this.onScrollMouse);我在scrollView中有个mouseHandlerLaya.Handler变量,想直接注册到这个变量上,但是两种...

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

10. 加载-加载序列 [ 95%]

...项目开发更高效。(function() { var Texture = Laya.Texture; var Handler = Laya.Handler; var numLoaded = 0; var resAmount = 3; (function() { Laya.init(500, 400); // 按序列加载 monkey2.png - monkey1.png - monkey0.png // 不开启缓存 // 关闭并发加载 Laya.loader.maxLoader = 1; Lay...

来源: Laya_示例 发布时间: 20241118