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

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

1. untiy导出的粒子特效有播放完成的回掉吗? [ 100%]

...YED 暂停播放时调度 : Event.PAUSED 完成一次时调度 : Event.COMPLETE 停止播放时调度 : Event.STOPPED 2017-05-13 0 1 分享 微博 QZONE 微信 183*****755 赞同来自: 现在文档是不全的,这点我们正在逐步完善,在这段期间,对开发者的素质就要求...

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

2. 骨骼动画播放完后的回调时间 [ 96%]

... 3 个回复 leeq3000 赞同来自: howartin 、fighter12345 监听Event.COMPLETE这个没用,要监听Event.STOPPED才生效 2017-01-10 2 0 分享 微博 QZONE 微信 cuixueying 赞同来自: WLN123 播放完成,请监听Event.COMPLETE事件! 2016-10-28 1 0 分享 微博 QZONE 微信 185*****...

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

3. 3d模型动画播放一次后的回调么用回调。 [ 96%]

...画播放一次后的回调么用回调。 调用方式如下无法收到COMPLETE事件: skinAni.player.play(0, 1, 0, param.start, param.end); skinAni.player.on(Laya.Event.COMPLETE, null, function(){      console.log("COMPLETE"); }); 2017-03-14 添加评论 免费帖 --> 分享 微博 QZON...

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

4. 3D骨骼动画播完怎么没有回调 [ 95%]

...自: 我也遇到这个问题了,3D骨骼动画只有默认的动画有COMPLETE回调,后Play的动画都没有COMPLETE回调 不知道是不是BUG  2018-06-01 0 0 分享 微博 QZONE 微信 hyong1986 赞同来自: STOPPEDCOMPLETE 事件都要监听。 STOPPED 是监听非循环动画,  ...

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

5. laya.ani.AnimationPlayer [ 93%]

...放完成后再停止 AnimationPlayerEventEvent Summary Defined By  complete完成一次循环时调度。AnimationPlayer  paused暂停时调度。AnimationPlayer  played开始播放时调度。AnimationPlayer  stopped停止时调度。AnimationPlayerProperty Detail_elapsedPlaybackTimepro...

来源: Laya2.0_api 发布时间: 20190513

6. 骨骼动画-多纹理 [ 93%]

...es/spine/spineRes1/dragon.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete); mFactory.on(Event.ERROR, this, onError); mFactory.loadAni(mAniPath); } function onError() { trace("error"); } function parseComplete() { //创建模式为1,可以启用换装 mArmature = mFac...

来源: Laya_示例 发布时间: 20241001

7. 骨骼动画-藤蔓 [ 92%]

.../res/spine/spineRes5/vine.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete); mFactory.on(Event.ERROR, this, onError); mFactory.loadAni(mAniPath); } function onError() { console.log("error"); } function parseComplete() { //创建模式为1,可以启用换装 mArmature ...

来源: Laya_示例 发布时间: 20241001

8. 骨骼动画-橡胶人 [ 92%]

...ine/spineRes4/stretchyman.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete); mFactory.on(Event.ERROR, this, onError); mFactory.loadAni(mAniPath); } function onError() { console.log("error"); } function parseComplete() { //创建模式为1,可以启用换装 mArmature ...

来源: Laya_示例 发布时间: 20241001

9. 骨骼动画-适配版Spine [ 92%]

...neVersion.v3_8); this.templet.loadAni(this.aniPath); this.templet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onError); } parseComplete() { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Browser.width / 2,...

来源: Laya2.0_示例 发布时间: 20241001

10. 骨骼动画-多纹理 [ 92%]

...es/spine/spineRes1/dragon.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, this.parseComplete); mFactory.on(Event.ERROR, this, this.onError); mFactory.loadAni(mAniPath); } onError() { trace("error"); } parseComplete() { // 创建模式为1,使用动画自己的缓冲区,可以启...

来源: Laya2.0_示例 发布时间: 20241001