Buy now

Get the Kindle eBook on Amazon

Preview:
Click here for a preview video from the eDVD(not available)

What you get with "The Character Animator Toolkit for Motionbuilder" ebook (currently only the ebook is available)

  • 100+ pages of course notes and step-by-step tutorials.
    1.5 hour video
    of the Master Class
    Bonus: example videos and files
    Extra video tutorials
    on how to keyframe animate in MotionBuilder.
    Python scripts
    showing the power of accessing poses and the control rig from custom attributes.

__________________________________________________________________________________
*New training and book offer through Rigging Dojo

MotionBuilder Rigging to Retargeting workshop (get the ebook free when taking this ondemand course)

Blog Posts

__________________________________________________________________________________


Maya 2012 : HIK menus and MEL commands (part 1)

Maya 2012 : HIK menus and MEL commands (part 1): "


Great post from the MayaStation blog.
Brad

"With Maya 2012 the HIK menus and windows have been revamp. Here are some of the most needed MEL commands to use the tools without going through the UI

The basic thing to know is that you need to set the current character in order to affect it, this is done by:

To set the current character

//in this example I am setting Character 2

$gCurrentCharacter = "Character2";
refreshAllCharacterLists();

Once the character is set, we can use it with these commands

Locking the Character definition
characterizationLock();

Creating a new Characterization
characterizationCreate();

Creating a ControlRig
characterizationControlRigCreate();

Deleting a Control Rig
characterizationControlRigDelete();

Using the skeleton generator
skeletonGeneratorToolNewCharacter;

Setting the source for a HumanIK character
//to control rig
mayaHIKsetRigInput( "Character1" ); updateHIKCharacterToolEnableCheckBox();

//to stance pose
mayaHIKsetStanceInput( "Character2" ); updateHIKCharacterToolEnableCheckBox();

//to set to a character input
mayaHIKsetCharacterInput( "Character1","Character2" ); updateHIKCharacterToolEnableCheckBox();

Choosing a keying mode, i.e. full-body, partial, or selection
//full body
optionVar -intValue keyFullBody 1; setKeyingMode( );


// body parts
optionVar -intValue keyFullBody 2; setKeyingMode( );


//selection
optionVar -intValue keyFullBody 3; setKeyingMode( );

Turning on and off pinning for individual effectors
//Here I am Character1_Ctrl_RightWristEffector as the effector

//unpinned
setAttr "Character1_Ctrl_RightWristEffector.pinning" 0;

//pin Translate
setAttr "Character1_Ctrl_RightWristEffector.pinning" 1;

//pin Rotate
setAttr "Character1_Ctrl_RightWristEffector.pinning" 2;

//pin all
setAttr "Character1_Ctrl_RightWristEffector.pinning" 3;

Baking the retarget to the control rig or skeleton
//Bake to Skeleton without opening the options
hikBakeToSkeleton 0;

//Bake to Skeleton with opening the options
hikBakeToSkeleton 1;

//Bake to Control Rig without opening the options
hikBakeToControlRig 0;

//Bake to Skeleton without opening the options
hikBakeToControlRig 1;

"

No comments: