大约有 79 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)
...YED 暂停播放时调度 : Event.PAUSED 完成一次时调度 : Event.COMPLETE 停止播放时调度 : Event.STOPPED 2017-05-13 0 1 分享 微博 QZONE 微信 183*****755 赞同来自: 现在文档是不全的,这点我们正在逐步完善,在这段期间,对开发者的素质就要求...
来源: Laya_社区 发布时间: 20170512
... 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
...画播放一次后的回调么用回调。 调用方式如下无法收到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
...自: 我也遇到这个问题了,3D骨骼动画只有默认的动画有COMPLETE回调,后Play的动画都没有COMPLETE回调 不知道是不是BUG 2018-06-01 0 0 分享 微博 QZONE 微信 hyong1986 赞同来自: STOPPED , COMPLETE 事件都要监听。 STOPPED 是监听非循环动画, ...
来源: Laya_社区 发布时间: 20171215
...放完成后再停止 AnimationPlayerEvents Event Summary Defined By complete完成一次循环时调度。AnimationPlayer paused暂停时调度。AnimationPlayer played开始播放时调度。AnimationPlayer stopped停止时调度。AnimationPlayerProperty Detail_elapsedPlaybackTimepro...
来源: Laya2.0_api 发布时间: 20190513
...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_示例 发布时间: 20241124
.../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_示例 发布时间: 20241124
...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_示例 发布时间: 20241124
...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_示例 发布时间: 20241124
...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_示例 发布时间: 20241124