Sunday, November 07, 2010
Hulkey Muscle Rig WIP 1
Sunday, October 10, 2010
Hulkey Muscle Flex Test
Monday, May 24, 2010
Nice Hulkey Pose!
Sunday, May 23, 2010
Thursday, May 20, 2010
Hulkey's all done!
Sunday, May 16, 2010
Hulkey Facial Rig Done!
Saturday, May 08, 2010
Hulkey Anim Rig Done!
Thursday, May 06, 2010
Hulkey Anim Rig WIP
Wednesday, April 21, 2010
Hulkey Body Modeling Done!
Sunday, April 18, 2010
Hulkey Body Modeling WIP 2
Wednesday, April 14, 2010
Monday, April 12, 2010
Maya Python - smSoftIK plugin node
- Reduce the "popping" of IK rigs when the joint chain straightens
- Ability to adjust and animate the soft limit
- AutoStretchiness already built into the plugin node, thus saving a bunch of multiplyDivide, plusMinusAverage or condition nodes in the rig
http://www.xsi-blog.com/archives/109
Saturday, April 10, 2010
Maya Python - Getting Points & Normals from MItGeometry all at once
meshIter0 = OpenMaya.MItGeometry(dag1)
points = OpenMaya.MPointArray()
meshIter0.allPositions(points, ObjectSpace)
# all the points are now stored in the points object
normals = OpenMaya.MVectorArray()
meshIter1.getNormals(normals, ObjectSpace)
# all the normals are now stored in the normals object
Tuesday, April 06, 2010
Hulkey Face Modeling Done!
- Joint-based facial setup to simulate "skin-sliding" effect of the controls
- Model actual blendshape targets to define the look and feel of the character
- Make use of the blendshape targets as additional corrective shapes of the facial setup
Thursday, March 25, 2010
Hulkey Face Modeling WIP 3
Monday, March 22, 2010
Thursday, March 18, 2010
Some Maya Python Tips & Tricks
From http://riggerman.animationblogspot.com
Ryan Trowbridge has pointed out a faster way of computing the deformations:
Most (if not all) of the devkit examples set the points positions one by one while iterating the mesh points, but this method is slower and since our deformation isn’t neighbor dependent or anything like that, we can set the points position all at once using MItGeometry.allPositions ().
In his own words: “The problem with this is that when the node goes to deform, it is iterating through x amount of vertices and each time it iterates it updates the scene using setPosition() So a 10,000 vertice mesh is updating the scene 10,000 times (…) The reason this one is faster is it get all the vertices and sets all the vertices at once“.
Well, to do this we need to create a MPointArray object to store the information we need. This line goes before the iteration loop:
allPoints = OpenMaya.MPointArray()
Now, inside the loop we can replace the setPosition line for this one:
allPoints.append(point+normalVec)
This will insert each point value in the point array object, so we can pass on this big list all at once to the final command, that goes right outside the loop:
geomIter.setAllPositions(allPoints)
Maya API docs demystified for Python Users
Wednesday, March 17, 2010
Final Hulkey Design

Sunday, March 14, 2010
Still exploring Hulkey designs...
Friday, March 12, 2010
Hulkey Rig Wishlist
- IK/FK seamless switching (context menu?)
- Stretchy Soft IK (python plugin or rig)
- Multi-purpose math node (python plugin)
- Volume Preservation
- - Muscle plugin/joints
- - Skin wrap deformer (python plugin)
- > One skin wrap to multiple surfaces (NURBS or polygons)
- > Paintable weights
- - Pose Space Deformations
- > Rewrite poseReader in python
- > Rewrite PSD in python?
- "Sculpable" layered body deformations
- Simple secondary animation on hair using "delay" python node
- Cloth sim on pants
- Adaptable Facial Rigging tool
- Pseudo "skin-sliding" joint-driven facial rig that adheres to director-approved shapes/look
- Facial GUI in Maya
- Sticky lips
- Take note of necessary controls under the eyes for more facial movement
- Pupil dilation
- Ability to shape eyelids (3 joints to control surface of lids?)
- On-surface controls? Direct face manipulation without controls?
- Teeth translation controls
- Remember to have upper lips down and lower lips up instead of just lips in shape
- "Sculpable" layered facial deformations
- "vert snap" deformer node to stick overall body to the face alone
- Rewrite AutoRig tool with interface (Mel or pyQT)
- Customizable Character UI (Mel/pyQT/HTML)