nemsi Posted May 24, 2019 Share Posted May 24, 2019 Hi guys, i would like to animate an object rotating 360° with some acceleration and slow down with weight.. Is there some fonctions or better to do all by hand. Thank you Quote Link to comment Share on other sites More sharing options...
kleer001 Posted May 24, 2019 Share Posted May 24, 2019 Animate it by hand. there are three basic types of expression based animation between two frame values, mix and match as you like: //linear: float tx = fit($FF,1,10,2,21); //exponential: float tx = fit01(pow(fit($FF,1,10,0,1),3),2,21); //smooth: tx = fit01(lerp(1,10,$FF),2,21); Quote Link to comment Share on other sites More sharing options...
nemsi Posted May 27, 2019 Author Share Posted May 27, 2019 Thank you Kleer001 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.