大约有 70 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0067 秒)
...aram complete 打开完成回调,返回场景实例(可选) * @param progress 加载进度回调(可选) */ static open(url: string, closeOther: boolean = true, param: any = null, complete: Handler = null, progress: Handler = null): Promise<Scene> { Scene.showLoadingPage(); return Sc...
来源: Laya3.0_文档 发布时间: 20241014
...标事件。 EventDispatcher load(url:String, complete:Handler = null, progress:Handler = null):void[static] 加载场景及场景使用到的资源 Scene loadImage(url:String, complete:Handler = null):Sprite 加载并显示一个图片。相当于加载图片后,设置texture属性 注意:2...
来源: Laya2.0_api 发布时间: 20190513
... 打包安卓版本时 播放音效会停止掉背景音乐 load方法的progress回调进的次数太少了。是我哪里设置有问题么 http 请求 once 的 回调参数,如何传递和接收? Laya.Handler.create 回调 问题状态 最新活动: 2017-12-21 16:30 浏览: 1000 关注: 2 人...
来源: Laya_社区 发布时间: 20171221
...is,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); 2017-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: once 是响...
来源: Laya_社区 发布时间: 20171017
...stComplete); xmlHttp.once(Event.ERROR,this,errorHandler); xmlHttp.on(Event.PROGRESS,this,processHandler); function onHttpRequestComplete(e){ }; function processHandler(data){ console.log(data); }; function errorHandler(data){ }; xmlHttp.send("http://","","post","text"); 2018-02-02 添加评论 免...
来源: Laya_社区 发布时间: 20180202
... completeHandler); xhr.once(Event.ERROR, this, errorHandler); xhr.on(Event.PROGRESS, this, processHandler); xhr.send("http://www.baidu.com", "", "get", "text"); function processHandler(data) { console.log(data); } function errorHandler(data) { console.log(data); } function completeHandler(e) { conso...
来源: Laya_社区 发布时间: 20180208
...n 赞同来自: LoaderManager类有个create(url: any, complete?: Handler, progress?: Handler, clas?: any, params?: Array<any>, priority?: number, cache?: boolean): any;方法,你可以看看 2017-11-29 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问...
来源: Laya_社区 发布时间: 20171129
...nts.HTTPStatusEvent; import flash.events.IOErrorEvent; import flash.events.ProgressEvent; import flash.events.SecurityErrorEvent; import flash.net.URLLoader; import flash.net.URLLoaderDataFormat; import flash.net.URLRequest; import flash.net.URLRequestMethod; import flash.net.URLVariables; public cl...
来源: Laya_社区 发布时间: 20151217
..._sound.on(Laya.Event.COMPLETE,this,this.loadcom_f); bg_sound.on(Laya.Event.PROGRESS,this,this.loadcom_f); bg_sound.on(Laya.Event.ERROR,this,this.loadcom_f); bg_sound.load("res/bg.mp3"); private loadcom_f(e:Laya.Event):void{ console.log("------------------=============") }可是这么写了一户,...
来源: Laya_社区 发布时间: 20160805
...StageScaleMode; import flash.events.Event; import flash.events.ProgressEvent; import flash.events.TimerEvent; import flash.external.ExternalInterface; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.text.TextFormat; impor...
来源: Laya_社区 发布时间: 20200217