时间轴动画和AS3 Tween类时间、动画、Tween

2023-09-08 14:37:07 作者:深拥不及久伴

有没有一种方法(使用AS 3吐温类,而不是TweenMax),以加快时间轴动画?

解决方案

 吐温=新吐温(这一点,框架,None.easeIn,148,172,5,真)

私人VAR _frame:INT;

公共功能设置框(值:编号):无效{
        _frame = INT(值);
        myMovieClip.gotoAndStop(_frame);
}
 

Is there a way (using the AS 3 Tween Class, NOT TweenMax) to speed up a timeline animation?

解决方案 时间轴的应用制作小动画

tween = new Tween(this, 'frame', None.easeIn, 148, 172, .5, true)

private var _frame:int;

public function set frame(value:Number):void {
        _frame = int(value);
        myMovieClip.gotoAndStop(_frame);
}

 
精彩推荐
图片推荐