大约有 31 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
...延迟执行。 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
...: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
...: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
... 赞同来自: 项目里 不要用 timer 的 clearByHandler 方法 清理定时器,这个方法容易造成缓存混乱,定时器停止了,是被其它地方的clearByHandler 方法清理了。 2020-05-03 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题...
来源: Laya_社区 发布时间: 20200113
这两种定时器在性能上有什么区别?没有区别的话那第二个是不是更好? Laya.timer.once(1, this, () => { SoundMgr.Ins.playEffect(Enums.EffectId.Ready); }); setTimeout(() => { SoundMgr.Ins.playEffect(En...
来源: Laya_社区 发布时间: 20200103
...07 就是你发的代码中我截图部分决定的,他就是通过一个定时器来实现的,并且是私有只读的,不可被修改的 2017-11-09 1 2 分享 微博 QZONE 微信 ymsdandan 赞同来自: 你在Timer方法中可以找到这个只读方法可以知道调用间隔,但是不能...
来源: Laya_社区 发布时间: 20171109
...个ui界面。。。在这个上面调用了.on的点击事件,调用了定时器。。还添加了其它一些image,sprite,label等对象。。 如果我调用this.removeSelf()是不是会把this上添加的全部移除?我知道定时器貌似不能自己清除。。要手动clear,那...
来源: Laya_社区 发布时间: 20180105
...单击事件 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
...除鼠标单击事件 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
...注: 2 人 liquanhui • 2018-04-04 10:54 那好吧,问个别的,停止定时器(laya.utils.Timer.frameLoop),除了clear和clearAll,还有吗
来源: Laya_社区 发布时间: 20180404