Maya 2020 fundamentals - modelling the real world
Get halfway through a model and find it's an unworkable mess? Can't add edge loops where you need them? Can't subdivide a mesh properly? If any of this sounds familiar check this course out.
# 1 17-05-2003 , 05:27 AM
Registered User
Join Date: Feb 2003
Posts: 97

Expression for decellerating rotation animation

Hey, I'm making an animation and I need some help with syncing it.

What needs to happen is this; it starts spinning slowly, and accellerates for a while untill it is going at a certain speed, and then it starts slowing down, and comes to a stop.

This is the expression I have so far:
if (frame < 102)
group4.rotateX = (frame*frame)*0.15;


Where do I go from here??

EDIT: Never mind, I've done it user added image
:banana:


Last edited by PappaSmurf; 17-05-2003 at 06:11 AM.
# 2 26-05-2003 , 05:05 AM
olivermagno's Avatar
Registered User
Join Date: Mar 2003
Location: Philippines
Posts: 94
try this, add attribute to your group name it RPM

if (frame == 1)
{group4.rotateX = 0 ;}
else
{ group4.rotateX += (( group.RPM * frame * 360 )/(30*60))/frame;}

just key the RPM attribute, 0 means it will not rotate.

got this stuff in highend3d.


------------------------------------------------
our decisions-not the conditions of our lives
determine our destiny.
Posting Rules Forum Rules
You may not post new threads | You may not post replies | You may not post attachments | You may not edit your posts | BB code is On | Smilies are On | [IMG] code is On | HTML code is Off

Similar Threads