├── Connect_rig.py └── README.md /Connect_rig.py: -------------------------------------------------------------------------------- 1 | from maya import cmds 2 | import pymel.core as pm 3 | 4 | 5 | cmds.createEmbeddedNodeRL4( 6 | n="rigLogicNode", #name your rig logic node filename here, the node will have the same name 7 | 8 | dfp_path="C:\Maya\Journalist\scripts\Kristofer_rl.dna", #enter the path to the file here, no need to change backslash in windows. 9 | dfp=dfp_path.replace("\\", "/") 10 | jn="DHIhead:.", 11 | amn="FRM_WMmultipliers._", 12 | bsn="_blendShapes.", 13 | cn="." 14 | ) 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## This script with connect your rl_dna file (which is the rig logic node in metahuman file) to your skeleton so they can be controlled by the metahuman controllers, in maya. Remember your maya file already has one RL4 node in it, which is probably just unable to find the path of the dna file. This node will be created as index[1], the original will remain at index[0] 2 | 3 | ## For maya only!! 4 | --------------------------------------------------------------------------------