Substance Painter
In this start to finish texturing project within Substance Painter we cover all the techniques you need to texture the robot character.
# 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