• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 396 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)

101. ani动画的问题 [ 69%]

...怎么定义? Zzz18815519 • 2017-10-11 20:01 tl.on(laya.events.Event.COMPLETE, this, this.destroy); 是不是这样就可以了 Monica • 2017-10-12 11:11 @Zzz18815519:是的(函数名最好不要用已有的来定义)

来源: Laya_社区 发布时间: 20171011

102. 分享:Dragonbones/Spine的换肤操作 [ 68%]

...ragonDragon/DragonDragon.sk');//加载龙骨动画数据 templete.on(Event.COMPLETE,this,onPleteComed);//数据解析完成后的调度事件。 } private function onPleteComed():void { skeleton=templete.buildArmature(1);//创建动画,类型:1 支持换装 skeleton.pos(150,250);//动画位置 s...

来源: Laya_社区 发布时间: 20170324

103. 龙骨动画的监听回调,有时能回调,有时不能回调 [ 68%]

...Templet(){ this.mFactory = new Laya.Templet(); this.mFactory.on(Laya.Event.COMPLETE, this, this.parseComplete); // this.mFactory.on(Laya.Event.STOPPED,this,this.parseComplete); this.mFactory.on(Laya.Event.ERROR, this, this.onError); this.mFactory.loadAni("res/games/Game_ddz/animation/ddz_figures_lan...

来源: Laya_社区 发布时间: 20190821

104. Animation播放完一次动画后的回调问题 [ 68%]

...imation播放完一次动画后的回调问题 starView.ani1.on(Laya.Event.COMPLETE,null,OnAnimation); 这个ani1是这个动画这样设置回调不对吗? 我看API那边事件就是这个COMPLETE 2017-02-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请...

来源: Laya_社区 发布时间: 20170215

105. Templet资源删除不掉 [ 68%]

...       factory = new Templet();             factory.on(Event.COMPLETE, this, onSkeletonDataParsed); //            factory.on(Event.ERROR, this, onError); //            factory.parseData(texture, data, 60);             factory.loadAni("res/Dragon.sk");     ...

来源: Laya_社区 发布时间: 20160902

106. Spine适配版(JavaScript-LayaAir基础篇(JS)-动画基础) [ 68%]

...TempletBinary(); this.templet.loadAni(this.aniPath); this.templet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onError) } private parseComplete(): void { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Brows...

来源: Laya2.0_文档 发布时间: 20210715

107. 官方的示例贴上来,怎么没反映啊 [ 68%]

...Request(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE, this, completeHandler); xhr.once(Event.ERROR, this, errorHandler); xhr.on(Event.PROGRESS, this, processHandler); xhr.send("https://api.weixin.qq.com/cgi- ... ot%3B, "", "get", "text"); function processHandler(data) ...

来源: Laya_社区 发布时间: 20180419

108. replaceSlotSkinName对于spine换肤不成功 [ 68%]

....WebGL); this.m_templet = new Laya.Templet(); this.m_templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.m_templet.on(Laya.Event.ERROR,this,this.onError); this.m_templet.loadAni("res/spine/goblins/goblins.sk"); } private onError():void { console.log("parse error"); } private parseComplet...

来源: Laya_社区 发布时间: 20180126

109. 请问我用下面的代码发送个简单的http get请求,为什么在电脑上能得到成功输出,在手机上总是得到失败输出呢? [ 68%]

...l=" + url); var req = new laya.net.HttpRequest(); req.on(laya.events.Event.COMPLETE, null, cb_onSuccess); req.on(laya.events.Event.ERROR, null, cb_onFail); req.send(url); } function cb_onSuccess(response) { alert("response=" + response); // 成功输出:{"ret":1478136071} } function cb_onFail(mess...

来源: Laya_社区 发布时间: 20161103

110. 为何用MovieClip加载Swf会造成H5卡死,且不报错? [ 68%]

...错? var mc:MovieClip = new MovieClip(); Laya.stage.addChild(mc); mc.on("complete", this, function (evt:Event){ trace("swf complete"); }); mc.load("../../res/swf/mapFlash.swf"); 为何加了这段代码,整个H5就如“死机”,点浏览器的刷新都不管用? 也不抱错? 2017-01-18 ...

来源: Laya_社区 发布时间: 20170118