大约有 516 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0043 秒)
Laya_社区(230) Laya3.0_api(103) Laya2.0_api(81) laya_api(62) Laya2.0_文档(16) Laya2.0_示例(10) Laya_示例(9) Laya3.0_文档(5)
...Users/borui/Desktop/Cube3D/bin/libs/laya.core.js:490:28) at Loader.__proto.complete (file:///C:/Users/borui/Desktop/Cube3D/bin/libs/laya.core.js:12865:9) at Loader.__proto.onLoaded (file:///C:/Users/borui/Desktop/Cube3D/bin/libs/laya.core.js:12854:9) at EventHandler.__proto.runWith (file:///C:/Users...
来源: Laya_社区 发布时间: 20180328
...e = ESceneLoadState.eLoadNull; // 地图创建完成回调函数 private _mCompleteHandler:Handler = null; private _mTest:number = 0; constructor(){ } /** * 创建地图,并显示当前场景 * @param conf 地图的配置信息 */ public create(conf:LevelConf, handler:Handler):void{ this._mLevelCo...
来源: Laya_社区 发布时间: 20180529
...s._load.on(Laya.Event.ERROR, this, this.onError); this._load.on(Laya.Event.COMPLETE, this, this.loadComplete); this._load.load(this._data.url, Laya.Loader.ATLAS, true); 加载完成后 this._ani = new Animation(); this._ani.loadImages(这里传入解析好的urls) 会提示重复加载 为什么我...
来源: Laya_社区 发布时间: 20171212
... // mc.on(Event.LOADED,this,onComp); // mc.on(Event.COMPLETE,this,onEnd); // mc.x = (Laya.stage.width ) / 2; // mc.y = (Laya.stage.height) / 2; Laya.stage.addChild(mc); return mc; ...
来源: Laya_社区 发布时间: 20170804
...let = new Laya.SpineTemplet(Laya.SpineVersion.v4_0); templet.on(Laya.Event.COMPLETE, handler.caller, handler.method); templet.on(Laya.Event.ERROR, this, this.printError); templet.loadAni(url); } printError(e) { console.error(e); } } //激活启动类 new Main(); 附件 : --> TEST2.zip 2022-05-30 ...
来源: Laya_社区 发布时间: 20220530
...求 let httpRequest = new Laya.HttpRequest(); httpRequest.once(Laya.Event.COMPLETE, this, (data)=>{ let byte = new Laya.Byte(data); byte.writeArrayBuffer(data, 4); let blob = new Laya.Browser.window.Blob([data], {type:'image/apng'}); let url = Laya.Browser.window.URL.createObjectURL(blob); showIm...
来源: Laya_社区 发布时间: 20190430
...= 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
...lay(0,false); this.swfAni.visible = true; this.swfAni.on(laya.events.Event.COMPLETE, this, this.onSWFPlayComplete,[state]); return this.swfAni; } 2017-05-05 5 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 zuojianfei...
来源: Laya_社区 发布时间: 20170505
...r('Content-Type','application/x-www-form-urlencoded'); xhr.once(Laya.Event.COMPLETE, this, this.completeHandler, [url, loader]); xhr.once(Laya.Event.ERROR, this, this.errorHandler); console.log("-----------------send------------------", url); xhr.send(url, "", "get", "arraybuffer"); 2018-07-04 添...
来源: Laya_社区 发布时间: 20180704
...ion(){console.log("http timeout test: timeout")}; hr.once(Laya.Event.COMPLETE, this, ()=>{console.log("http timeout test: success");}); hr.once(Laya.Event.ERROR, this, (e: any)=>{console.log("http timeout test: error " + e.toString());}); console.log("http timeout test: start...
来源: Laya_社区 发布时间: 20171016