大约有 211 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
Laya3.0_api(80) Laya2.0_api(74) laya_api(34) Laya_社区(15) Laya2.0_文档(3) Laya3.0_文档(2) Laya2.0_示例(2) Laya_示例(1)
...cript三种开发语言、LayaAirIDE让项目开发更高效。class Timer_CallLater { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alig...
来源: Laya2.0_示例 发布时间: 20241118
... * @param method 定时器回调函数。 * @param args 回调参数。 */ callLater(caller: any, method: Function, args: any[] = null): void { CallLater.I.callLater(caller, method, args); } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated...
来源: Laya3.0_文档 发布时间: 20241014
...; })(); function demonstrate() { for (var i = 0; i < 10; i++) { Laya.timer.callLater(this, onCallLater); } } function onCallLater() { console.log("onCallLater triggered"); var text = new Text(); text.font = "SimHei"; text.fontSize = 30; text.color = "#FFFFFF"; text.text = "打开控制台可见该...
来源: Laya_示例 发布时间: 20241118
...s constructor Properties currFrame currTimer scale 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 创...
来源: Laya3.0_api 发布时间: 20231115
callLater延时的时间怎么设置 /** * 延迟执行。 * @param caller 执行域(this)。 * @param method 定时器回调函数。 * @param args 回调参数。 */ callLater(caller: any, method: Function, args?: Array<any>): void; 这个注释说这个函数延迟执行 延迟多久执行...
来源: Laya_社区 发布时间: 20170323
... MethodDefined By Timer() 创建 Timer 类的一个实例。 Timer callLater(caller:*, method:Function, args:Array = null):void 延迟执行。 Timer clear(caller:*, method:Function):void 清理定时器。 Timer clearAll(caller:*):void 清理对象身上的所有定时器。 Timer ...
来源: laya_api 发布时间: 20170929
...mer(autoActive:Boolean = true) 创建 Timer 类的一个实例。 Timer callLater(caller:*, method:Function, args:Array = null):void 延迟执行。 Timer clear(caller:*, method:Function):void 清理定时器。 Timer clearAll(caller:*):void 清理对象身上的所有定时器。 Timer ...
来源: Laya2.0_api 发布时间: 20190513
...21-07-01 0 1 分享 微博 QZONE 微信 156*****628 赞同来自: 像class CallLater这种拼接字符串方式就没问题啊,为啥class Timer要用数组的形式呢 getHandler(caller, method) { var cid = caller ? caller.$_GID || (caller.$_GID = ILaya.Utils.getGID()) : 0; var mid = method.$_...
来源: Laya_社区 发布时间: 20210701
...arent){ value && this._parent._set$P("hasZorder",true); Laya.timer.callLater(this._parent,[b]this._parent.updateZOrder[/b]);//Laya.timer.callLater(this._parent,this.updateZOrder); } } }); 之前官方是 Laya.timer.callLater(this._parent,this.updateZOrder); 我改完是 Laya.timer.callLater(...
来源: Laya_社区 发布时间: 20180412
CallLater内存泄露问题 直接map["aa"] = null,会导致map的属性越来越多。 附件 : --> 2023-09-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_phhh 赞同来自: 方便的话提供一个dem...
来源: Laya_社区 发布时间: 20230904