문제

I'm trying to figure out a way to have a number fluently change from 'a' to 'b' in 'x' number of frames.

Essentially, I have a bunch of arrow gauges that I will animate to increase or decrease dependant on what is happening in my "simulation". Alongside these arrows I am having a digital output to indicate precise values.

My inital plan is to have the arrows rotating on a tween and have the numbers change from say' 700 to 750 at the same time over the same time frame. Without manually changing the numbers within a seperate symbol and having it run same time as the arrows, is there code to do this?

so just to clarify; i want to to make my numbers change from x to y on their own once I decide how many frames the change will take place over.

도움이 되었습니까?

해결책

It's pretty easy to do this with a tweening engine like Tweener or TweenLite. You'd just set a variable to hold the number, and add a tween to change it to the target value over the desired amount of time. In the tween's 'update' hook you'd update the text value to be the current value of the variable.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top