大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0022 秒)
... * 派发事件。 * @param type 事件类型。 * @param data (可选)回调数据。<b>注意:</b>如果是需要传递多个参数 p1,p2,p3,...可以使用数组结构如:[p1,p2,p3,...] ;如果需要回调单个参数 p ,且 p 是一个数组,则需要使用结构如:[...
来源: Laya3.0_文档 发布时间: 20241014
...用Laya.loader.load("资源路径")方法加载单个资源,通过.then("回调方法")来处理加载后的逻辑。 Laya.loader.load(url).then((res)=> {/** 不带类型,用于常规的资源 */}); 完整的脚本示例如下: const { regClass, property } = Laya; @regClass() export class L...
来源: 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
...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