PDA

View Full Version : looking for shoulder tutorials -


caulfield
11-03-2003, 01:27 AM
I'm looking for any good tutorials specifically about shoulder rigging. I've seen the Andrew Silke and David Clayton one on Cane Toad, and I've looked through the tutorials thread.

I'd like to know how to automatically raise the clavical joint when the upper arm rotates above a certain angle.

Any peoples could help me out?

R_K
11-03-2003, 05:43 PM
are you opposed to expressions?

could just put a conditional expression in. something like

if (upperarmjoint.rz > 45)
claviclejoint.rz = (upperarmjoint.rz - 45) / 5;
else
clavicaljoint.rz = 0

another way,

claviclejoint.rz = (upperarmjoint.rz > 45) * ((upperarmjoint.rz - 45) / 5);

thats off the top of my head.

hope it helps.
r

dmcgrath
11-04-2003, 08:33 PM
Also look into set driven keyes. That is a really easy way to go. just raise the arm as teh driver, and then the clavicle can go up as the driven.

CGTalk Moderation
01-16-2006, 01:00 PM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.