Game characters rigging approach in maya

I am kind of new to rigging.

Do u guys usually split the skeleton structure into 2 parts?
the first one is driven by control curve and the other is driven by the first one using constraints. Character mesh is bound to the second one. and only the second skeleton gets exported to game engine.

is there any disadvantage of this?

hope that someone can explain a better approach.

The industry standard is splitting it into 2 parts, as you put it.
Normally these things are named the “Control rig”, which is what the animator uses to get his animation done, optimised for usability. And the slave rig, the ones you export to the engine together with the mesh.

The reason people usually do this is because engines (normally) do not know how to interpret anything else you use in your rig. They do not understand constraint/curves/conditions etc., so if you would export all you would have a plethora or useless empty nodes.

The pipeline I suggest for getting character animations from maya to an engine would be, in simple steps:

  • Build character mesh/texture
  • Build rig with controls, and a slaverig bound to the rigbones, which in turn are driven by the curves
  • Animate
  • Bake animation of the slaverig
  • Export Slaverig and bound mesh in FBX (this is sufficient for both Unreal and Unity)
4 Likes

thanks a lot.
I have been doing this for a while, didn’t know the reason behind.