Hi! This is a set of tools for programmatically creating rigs on top of pre-built skeletons
This toolset is currently designed to be run entirely through code, with the functional, and character-specific build code split into their own files.
The main functional code is situated in rig_on_skeleton.py, and there are two example scripts for the rig building.
These are metahuman.py and brooke.py.
from rig_on_skeleton import brooke # Replace this with the specific runner module
from importlib import reload # Reloads only need to be added if you're actively working on the code
reload(brooke)
brooke.run()(This toolset was created entirely by paw, no AI tools were used)



