大约有 330 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(261) Laya2.0_文档(21) Laya2.0_示例(10) Laya_示例(9) laya_api(8) Laya3.0_api(8) Laya2.0_api(8) Laya3.0_文档(5)
...用animation播放问题 this._load = new Laya.Loader() this._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(这里...
来源: Laya_社区 发布时间: 20171212
...ar sp = 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
...代码来获取失败信息,但貌似没有效果的: this.avatar.on(Event.ERROR, this, function() { console.log('loaded fail'); }); 2017-09-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 ybs1905com 赞同...
来源: Laya_社区 发布时间: 20170928
... this.addChild(this.playAnim); this.playAnim.on(Laya.Event.COMPLETE,this,this.onPlayComplete); } onMouseMove():void{ //根据鼠标位移主角方法 this.hero.pos(Laya.stage.mouseX,Laya.stage.mouseY); } 2018-05-03 0 0 分享 微...
来源: Laya_社区 发布时间: 20180502
...tHeader('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
...件无法拖动,报如图错误 Ignored attempt to cancel a touchstart event with cancelable=false, for example because scrolling is in progress and cannot be interrupted. 附件 : --> 2017-03-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...
来源: Laya_社区 发布时间: 20170308
....json" at ChildProcess.exithandler (child_process.js:217:12) at emitTwo (events.js:106:13) at ChildProcess.emit (events.js:194:7) at maybeClose (internal/child_process.js:899:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5) killed: false, code: 1, signal: null, cmd: 'D:...
来源: Laya_社区 发布时间: 20190730
... Utils3D._createNodeByJson(this,json,this,innerResouMap); this.event("hierarchyloaded",[this]); this.__loaded=true; } 打了一个log,发现data[0]读取出来的结果是"{",也就是说data被按照字符串读取了,而不是数组。 /** *结束加载,...
来源: Laya_社区 发布时间: 20180101
...ar sp = 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是arraybuffe...
来源: Laya2.0_文档 发布时间: 20210714
...问题是因为没有资源也调用了加载完成, Laya.loader.on(Laya.Event.ERROR, this, this.onLibError); Laya.loader.load([{ url:com.globals.GameConfig.XML_LIB_URL, type:Loader.BUFFER }], Handler.create(this, this.onLibLoaded)); 资源是不存在的,然后还是调用了 this.onLibLoaded ...
来源: Laya_社区 发布时间: 20171102