gpt4 book ai didi

javascript - CreateJS/EaselJS 框架中的动画回调

转载 作者:行者123 更新时间:2023-11-28 04:07:46 25 4
gpt4 key购买 nike

EaselJs 框架中有没有动画回调?基本上我想在每个动画序列结束时收到通知。

最佳答案

对于 Sprite 表动画,您可以像这样使用 onAnimationEnd:

// create a BitmapAnimation instance to display and play back the sprite sheet:

var bmpAnim = new BitmapAnimation(spriteSheet);

// start playing the first sequence:

bmpAnim.gotoAndPlay("walkRt");

// the callback is called each time a sequence completes:

bmpAnim.onAnimationEnd = angleChange;

Online api doc here:
http://www.createjs.com/Docs/EaselJS/BitmapAnimation.html

如果您使用来自 TweenJS 的补间,您可以在补间实例上使用调用函数:

例子:

Tween.get(bar, {override:true}).to({x:695}, 1500, easeType).call(tweenComplete);

在线 api 文档在这里: http://www.createjs.com/Docs/TweenJS/modules/TweenJS.html

关于javascript - CreateJS/EaselJS 框架中的动画回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10617604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com