大约有 12 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...位为帧)。 * @param caller 执行域(this)。 * @param method 定时器回调函数。 * @param args 回调参数。 * @param coverBefore 是否覆盖之前的延迟执行,默认为 true 。 */ frameOnce(delay: number, caller: any, method: Function, args: any[] = null, coverBefore: boolean = tr...
来源: Laya3.0_文档 发布时间: 20241014
...tion)与延迟执行(delay)参数3.6 理解ease参数3.7 理解完成回调(complete)参数3.8 通过Props参数实现过程回调缓动 一、概述 缓动的最大用处就是应用在设计的运动表现上,可以结合物理、数学等原理真实地模拟显示生活中的运动...
来源: Laya3.0_文档 发布时间: 20241014
... * 派发事件。 * @param type 事件类型。 * @param data (可选)回调数据。<b>注意:</b>如果是需要传递多个参数 p1,p2,p3,...可以使用数组结构如:[p1,p2,p3,...] ;如果需要回调单个参数 p ,且 p 是一个数组,则需要使用结构如:[...
来源: Laya3.0_文档 发布时间: 20241014
... * @param onSuccess 带有唯一<code>Position</code>参数的回调处理器。 * @param onError 可选的。带有错误信息的回调处理器。错误代码为Geolocation.PERMISSION_DENIED、Geolocation.POSITION_UNAVAILABLE和Geolocation.TIMEOUT之一。 */ static getCurrentPosition...
来源: Laya3.0_文档 发布时间: 20241014
...m url 远程地址 * @param local 存到本地文件 * @param onprog 进度回调 * @param oncomp 完成回调 * @param trynum 重试次数(0无限重试) * @param opttimeout 超时时间, * 注意如果成功了不会返回ArrayBuffer,不要使用这个参数。因为可能太大。 */ decl...
来源: Laya3.0_文档 发布时间: 20241024
...ope通过change事件对设备方向改变进行监听。该事件有两个回调参数: absolute —— 如果设备提供的方位是基于设备坐标系统和地球坐标系统间的差距,则是true;如果设备无法检测到地球坐标系统,absolute为false。 rotationInfo —— Ro...
来源: Laya3.0_文档 发布时间: 20230303
...sources文件夹下新建一个data.txt文件 //设置完成事件,添加回调方法 http.once(Laya.Event.COMPLETE, this, this.completeHandler); //设置错误事件,添加回调方法 http.once(Laya.Event.ERROR, this, this.errorHandler); //设置进度事件,添加回调方法 http.on(Laya.E...
来源: Laya3.0_文档 发布时间: 20241014
...在创建之前已经载入。所以这里使用了一个IEditor.onLoad的回调用于提前载入资源。 2、设置字段的inspector属性为刚才取的名字,这里为MyTestField @Laya.regClass() export class Script extends Laya.Script { @property({ type : Laya.Node, inspector: "MyTestField"...
来源: Laya3.0_文档 发布时间: 20241014
...width,sp.height); })); Laya.stage.addChild(sp); loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 直接调用size设置: Laya.loader.load("res/apes/monkey2.png",Laya.Handler.create(this,function() { var texture=Laya.loader.getRes("res/apes/monkey2.png"); var sp=new...
来源: Laya3.0_文档 发布时间: 20241014
...数,会传递给onOpened方法(可选) * @param complete 打开完成回调,返回场景实例(可选) * @param progress 加载进度回调(可选) */ static open(url: string, closeOther: boolean = true, param: any = null, complete: Handler = null, progress: Handler = null): Promise&...
来源: Laya3.0_文档 发布时间: 20241014