This content has been marked as final.
Show 2 replies
-
1. Re: Animation from random position to specific
Dan Ebberts Mar 20, 2010 9:55 AM (in response to Kostas Arvanitidis)Like this maybe?
moveStart = 12;
moveDuration = 1;
seedRandom(18, true);
z = linear(time,moveStart,moveStart+moveDuration, random (400,-400),0);
[value[0],value[1],z]Dan
-
2. Re: Animation from random position to specific
Kostas Arvanitidis Mar 20, 2010 10:07 AM (in response to Dan Ebberts)Thanks Dan !
I was just reading about 'linear' and 'ease' expressions and trying to figure them out...
Thanks again for the fast and to-the-point answer

