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

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

211. 怎么对动画进行毎帧侦听? [ 60%]

怎么对动画进行毎帧侦听? ani.on(Laya.Event.COMPLETE, this, _OnComplete);   function _OnComplete() {   var bounds = ani.getGraphicBounds();   console.log(bounds.width);   console.log(bounds.height); } 这样的话获取动画宽高  还是只会取到第一帧宽高  并没有办...

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

212. 为什么获取不到getBounds()的width,height [ 60%]

...了,可以通过加一个延迟函数进行处理抑或添加一个Event.COMPLETE函数。 参考如下: 第二个问题:this.body和this.hero的区别 this.body是Role类下的animation实例:是个Animation this.hero是Role类的实例:是个Sprite(因为Role继承自Sprite) 第三...

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

213. laya.resource.Texture_API3.0 [ 60%]

...定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

214. 怎么让动画播放到最后一帧然后消失? [ 60%]

... 提交 2 个回复 cuixueying 赞同来自: 请为你的动画监听Event.COMPLETE事件,该事件会再动画播放完一遍后触发,可以在该回调里将动画停止并销毁! 2017-02-16 0 0 分享 微博 QZONE 微信 186*****260 赞同来自: 谢谢 2017-02-16 0 0 分享 微博 QZONE ...

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

215. Laya.loader.load怎么停止回调 [ 59%]

...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

216. [2.0 3D] AnimatorState问题 [ 59%]

...D] AnimatorState问题 state.clip.islooping = false; state.clip.once(Event.COMPLETE,this,onAniComplete) 1.0动作有播放结束事件,到了2.0发现被你们干掉了,用addScript也可以处理,但是你们看看AnimatorStateScript类,里面空空的,没办法知道是哪个模型动作...

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

217. 3D中的Animator如何从指定的某一帧开始播放动画 [ 59%]

...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

218. Animation 播放完成回调有参数吗 [ 59%]

Animation 播放完成回调有参数吗 Animation.on(Event.COMPLETE, this, bfwc); function bfwc(e){         console.log(e.target.name); }    是错误的 2017-07-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 ...

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

219. Laya.Animator 无法通过on监听 [ 59%]

Laya.Animator 无法通过on监听 ani.on(Laya.Event.COMPLETE,this,this.onAniComplete,[ani]); 报错 无法类型"Animator" 上不存在属性"on",现在无法通过on监听了么,请问现在要如何监听动画播放完毕 2019-04-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...

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

220. Laya2.7版本 导出来的粒子特效有一个报错, 其他几个都没问题, 请教下这个特效是哪里有问题 [ 59%]

...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)   报错信息如上。 导出了很多粒子特效...

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