大约有 6 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0018 秒)
...时间和其他一些Timer相关的问题 问一下 1.当使用Laya.timer.frameLoop时,是否前一贞到这一贞之间的deltaTime只有通过主动从laya.utils.Timer里去获取delta值才能得到?还是说有类似Unity3D中继承并override一个特定类(Unity3D中的MonoBehaviour)中的...
来源: Laya_社区 发布时间: 20160825
...le Accessors delta Methods callLater clear clearAll clearCallLater destroy frameLoop frameOnce loop once pause resume runCallLater runTimer toString Constructors constructor new Timer(autoActive?: boolean): Timer Defined in laya/utils/Timer.ts:34 创建 Timer 类的一个实例。 Parameters Default...
来源: Laya3.0_api 发布时间: 20231115
... clearAll(caller:*):void 清理对象身上的所有定时器。 Timer frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:B...
来源: laya_api 发布时间: 20170929
... clearAll(caller:*):void 清理对象身上的所有定时器。 Timer frameLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:B...
来源: Laya2.0_api 发布时间: 20190513
...s.stage.on(Laya.Event.BLUR, this, this.onBlur); Laya.timer.frameLoop(1,this,this.onFrameLoop); } private onFrameLoop():void{ console.log("delta:",Laya.timer.delta); } private onFocus(): void { console.log("onFocus:")...
来源: Laya_社区 发布时间: 20180724
...aram coverBefore 是否覆盖之前的延迟执行,默认为 true 。 */ frameLoop(delay: number, caller: any, method: Function, args?: Array<any>, coverBefore?: boolean): void; /** 返回统计信息。*/ toString(): string; /** * 清理定时器。 * @param caller 执行域(this)。 * @par...
来源: Laya_社区 发布时间: 20171109