大约有 506 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0048 秒)
Laya_社区(220) Laya3.0_api(103) Laya2.0_api(81) laya_api(62) Laya2.0_文档(16) Laya2.0_示例(10) Laya_示例(9) Laya3.0_文档(5)
... this.parsePLFBData(data); this.complete(data); }else if (type=="plf"){ this.parsePLFData(data); this.complete(data); }else if (type==="image"){ var tex=...
来源: Laya_社区 发布时间: 20200427
...atcher 对象。 请求发送: var hr = new HttpRequest(); hr.once(Event.COMPLETE, this, http.success,[1,2,3]); hr.send("http://localhost:8082/hu_get",{}, "post","json",null); 回调方法: success:function (e,args) { console.log(e); //此行可以得到响应内容 console.log(ar...
来源: Laya_社区 发布时间: 20180304
...事件类型是否是鼠标事件。 EventDispatcher load(url:String, complete:Handler = null):void 加载指定地址的图片。 Texture moveUV(offsetX:Number, offsetY:Number, uv:Array):Array[static] 平移 UV。 Texture off(type:String, caller:*, listener:Function, onceOnly:Boolean = false...
来源: Laya2.0_api 发布时间: 20190513
...ya.core.js:1000) at Loader.event (laya.core.js:1039) at Loader.complete (laya.core.js:18862) at Loader.onLoaded (laya.core.js:18818) at EventHandler.runWith (laya.core.js:998) at HttpRequest.event (laya.core.js:1039) at HttpRequest.complete (laya.core.js:18456) ...
来源: Laya_社区 发布时间: 20200824
...n.from(letterText,{y:100},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和delay都是以毫秒为单位,所以3,...
来源: Laya_社区 发布时间: 20180620
...bin/res/spine_model/${spine}.sk`); this._factory.on(Laya.Event.COMPLETE, this, this.parseComplete, [x, y]); } private parseComplete(x, y) { this._factory.off(Laya.Event.COMPLETE, this, this.parseComplete); var sprite = this._factory.buildArmature(0); ...
来源: Laya_社区 发布时间: 20161108
...L); //创建动画模板 templet=new Laya.Templet(); templet.on(Laya.Event.COMPLETE,this,parseComplete); templet.on(Laya.Event.ERROR,this,onError); //加载动画文件 templet.loadAni("res/spine/goblins/goblins.sk"); function onError() { console.log("parse error"); } function parseComplete() { //...
来源: Laya2.0_文档 发布时间: 20210715
...2 浏览: 2501 关注: 2 人 182*****369 • 2016-12-14 20:35 ani.on(Event.COMPLETE,this,tryto); 没有这种对动画本身添加的监听,您能给贴一个简单的demo吗 qq502416708 • 2017-02-14 17:06 @cuixueying:你这是认真的还是开玩笑的。。。没人会这么写代码吧。。...
来源: Laya_社区 发布时间: 20161214
... Laya.stage.addChild(tl); //播放Animation动画 tl.play(); tl.on(Event.COMPLETE, this, () => {console.log('end')}); } 2018-08-23 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 zyx 相关问题 看了其他引擎才发现 LAYA 真的...
来源: Laya_社区 发布时间: 20180817
... 微博 QZONE 微信 Laya_Aaron 赞同来自: laya.core.js 18667行 complete方法 按照如下修改 complete(data) { this._data = data; if (this._customParse) { this.event(Event.LOADED, data instanceof Array ? [data] : data); } else { this._http.offAllCaller(this); Loader._loaders.push(this)...
来源: Laya_社区 发布时间: 20200214