大约有 48 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
... = null):void 结束加载,处理是否缓存及派发完成事件 Event.COMPLETE 。 Loader event(type:String, data:* = null):Boolean 派发事件。 EventDispatcher getAtlas(url:String):Array[static] 获取指定资源地址的图集地址列表。 Loader getRes(url:String):*[static] 获...
来源: Laya2.0_api 发布时间: 20190513
...ayaScene_yueren/yueren.ls", Laya.Handler.create(this, function () { //complete func console.log("Scene loaded"); isLoaded = true; }), Laya.Handler.create(this, function (pro) { if (debug) console.log("Loading progresss : " + pro); }, null, false), Laya.Scene); Monica • 201...
来源: Laya_社区 发布时间: 20180321
...管是Laya.loader.load(url, onLoaded, ...) 还是Laya.loader.on(Event.COMPLETE, this, onLoaded); 加载失败都会到onLoaded,那怎么区分是不是加载成功? 2017-03-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20170325
...戏有个loading页面 我通过load方法把资源全部load之后,在complete方法中通过getRes方法获取不到。部分代码如下: var resources = [ { url: "res/atlas/images/guide.atlas", type: Laya.Loader.ATLAS }, { url: "config/data.txt", type: Laya.Loader.BUFFER }]; Laya.loader.load...
来源: Laya_社区 发布时间: 20180816
...y> load(url: string | ILoadURL | (string | Readonly<ILoadURL>)[], complete?: Handler, progress?: Handler, type?: string, priority?: number, cache?: boolean, group?: string, ignoreCache?: boolean, useWorkerLoader?: boolean): Promise<any> Defined in laya/net/Loader.ts:204 加载资源...
来源: Laya3.0_api 发布时间: 20231115
...tionDomain.currentDomain); loader.contentLoaderInfo.addEventListener(Event.COMPLETE,onSwfLoaded); loader.load(new URLRequest("binarys.swf"),context); } protected function onSwfLoaded(event:Event):void { // TODO Auto-generated method stub var mc:MovieClip=event.target.content as MovieClip; mc.play();...
来源: Laya_社区 发布时间: 20151224
...WorkerLoader.workerPath设置为"libs/worker.js";,则加载不成功,complete回调不会被调用 2018-12-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 185*****515 赞同来自: 我也遇到了 请官方...
来源: Laya_社区 发布时间: 20181206
...监测连资源都不会加载,开发者工具里没有显示,但加载complete回调还会执行....,蒙了,有没大神指点下呢 2017-12-22 0 0 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 是跨域了吧? 可以先按照这个https://ask.layabox.com/question/13 帖...
来源: Laya_社区 发布时间: 20171222
...= new Laya.Sprite(); var xhr = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE,this,completeHandler); xhr.once(Laya.Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); function completeHandler(data){ //加载完成返回的data是arraybuffer; //.......这里处...
来源: Laya2.0_文档 发布时间: 20210715
...= new Laya.Sprite(); var xhr = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE,this,this.completeHandler); xhr.once(Laya.Event.ERROR,this,this.errorHandler); xhr.send("res/a.png","","get","arraybuffer"); } private completeHandler(data:Object):void{ //加载完成返回的data是arraybuffer; /...
来源: Laya2.0_文档 发布时间: 20210714