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

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

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

...延迟执行。 Parameters caller: any 执行域(this)。 method: Function 时器回调函数。 Default value args: any[] = null 回调参数。 Returns void clear clear(caller: any, method: Function): void Defined in laya/utils/Timer.ts:243 清理时器。 Parameters caller: any 执行域(th...

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

2. laya.utils.Timer [ 94%]

...:void 延迟执行。 Timer  clear(caller:*, method:Function):void 清理时器Timer  clearAll(caller:*):void 清理对象身上的所有时器Timer  frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧...

来源: laya_api 发布时间: 20170929

3. laya.utils.Timer [ 94%]

...:void 延迟执行。 Timer  clear(caller:*, method:Function):void 清理时器Timer  clearAll(caller:*):void 清理对象身上的所有时器Timer  frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧...

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

4. 什么情况下Tween缓动会停止?除了暂停函数外 [ 83%]

... 赞同来自: 项目里 不要用 timer  的 clearByHandler 方法 清理时器,这个方法容易造成缓存混乱,时器停止了,是被其它地方的clearByHandler 方法清理了。 2020-05-03 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题...

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

5. 这两种时器在性能上有什么区别?没有区别的话那第二个是不是更好? [ 78%]

这两种时器在性能上有什么区别?没有区别的话那第二个是不是更好? Laya.timer.once(1, this, () => {             SoundMgr.Ins.playEffect(Enums.EffectId.Ready);         });   setTimeout(() => {             SoundMgr.Ins.playEffect(En...

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

6. 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? [ 73%]

...07 就是你发的代码中我截图部分决定的,他就是通过一个时器来实现的,并且是私有只读的,不可被修改的 2017-11-09 1 2 分享 微博 QZONE 微信 ymsdandan 赞同来自: 你在Timer方法中可以找到这个只读方法可以知道调用间隔,但是不能...

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

7. removeSelf()这个方法调用后是不是会移除对象上添加的一切东西? [ 73%]

...个ui界面。。。在这个上面调用了.on的点击事件,调用了时器。。还添加了其它一些image,sprite,label等对象。。   如果我调用this.removeSelf()是不是会把this上添加的全部移除?我知道时器貌似不能自己清除。。要手动clear,那...

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

8. 计时器-延迟执行 [ 72%]

...单击事件 this.button1.off(Event.CLICK, this, this.onDecreaseAlpha1); //定时执行一次(间隔时间) Laya.timer.once(3000, this, this.onComplete1); } onDecreaseAlpha2(e) { const Event = Laya.Event; //移除鼠标单击事件 this.button2.off(Event.CLICK, this, this.onDecreaseAlpha2); //定时...

来源: Laya2.0_示例 发布时间: 20241118

9. 计时器-延迟执行 [ 72%]

...除鼠标单击事件 button1.off(Event.CLICK, this, onDecreaseAlpha1); //定时执行一次(间隔时间) Laya.timer.once(3000, this, onComplete1); } function onDecreaseAlpha2(e) { //移除鼠标单击事件 button2.off(Event.CLICK, this, onDecreaseAlpha2); //定时执行一次(基于帧率) Laya.t...

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

10. 长按更新UI [ 70%]

...注: 2 人 liquanhui • 2018-04-04 10:54 那好吧,问个别的,停止时器laya.utils.Timer.frameLoop),除了clear和clearAll,还有吗

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