大约有 516 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)
Laya_社区(230) Laya3.0_api(103) Laya2.0_api(81) laya_api(62) Laya2.0_文档(16) Laya2.0_示例(10) Laya_示例(9) Laya3.0_文档(5)
....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
...了,可以通过加一个延迟函数进行处理抑或添加一个Event.COMPLETE函数。 参考如下: 第二个问题:this.body和this.hero的区别 this.body是Role类下的animation实例:是个Animation this.hero是Role类的实例:是个Sprite(因为Role继承自Sprite) 第三...
来源: Laya_社区 发布时间: 20160729
...D] AnimatorState问题 state.clip.islooping = false; state.clip.once(Event.COMPLETE,this,onAniComplete) 1.0动作有播放结束事件,到了2.0发现被你们干掉了,用addScript也可以处理,但是你们看看AnimatorStateScript类,里面空空的,没办法知道是哪个模型动作...
来源: Laya_社区 发布时间: 20190106
...定url创建 Parameters url: string Returns boolean load load(url: string, complete?: Handler): Promise<void> Defined in laya/resource/Texture.ts:277 加载指定地址的图片。 Parameters url: string 图片地址。 Optional complete: Handler 加载完成回调 Returns Promise<void> ...
来源: Laya3.0_api 发布时间: 20231115
Animation 播放完成回调有参数吗 Animation.on(Event.COMPLETE, this, bfwc); function bfwc(e){ console.log(e.target.name); } 是错误的 2017-07-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 ...
来源: Laya_社区 发布时间: 20170718
...load = Laya.loader.load(this._data.url, Laya.Handler.create(this, this.loadComplete), null, Laya.Loader.ATLAS); 如果我想在加载的过程中 不去触发 loadComplete方法 我该怎么办? this._load.off(Laya.Event.COMPLETE, this, this.loadComplete); 这个是没用的 2017-12-21 添加评...
来源: Laya_社区 发布时间: 20171221
...ame); animator.on(Event.STOPPED, this, this.removeClip); animator.on(Event.COMPLETE, this, this.removeClip); animator.play("runShoot"); 2018-07-26 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 这个要在unity 里面进行切片,从那一帧开始切,然后用切片的名字播放 201...
来源: Laya_社区 发布时间: 20180725
Laya.Animator 无法通过on监听 ani.on(Laya.Event.COMPLETE,this,this.onAniComplete,[ani]); 报错 无法类型"Animator" 上不存在属性"on",现在无法通过on监听了么,请问现在要如何监听动画播放完毕 2019-04-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20190429
...关的链接 提交 1 个回复 qian 赞同来自: a372853273 ani.on(Event.COMPLETE,this,onComplete); 2018-03-20 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 a372853273 相关问题 sprite旋转以后,但是原来碰撞检测rect没...
来源: Laya_社区 发布时间: 20180320
...动作结束后,播放run动作,如何切换呢?是注册事件Event.complete,监听stand播放是否完毕吗? 2018-06-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 用creat...
来源: Laya_社区 发布时间: 20180623