🐞 Bug Report
Description
Plebes function Constrain to Rig not working on any template ( but mostly tested on custom .json that was made to work with our skeleton hierarchy ).
Steps to Reproduce
- Use Rig Plebe to Import FBX, Import Guides, Align Guides and Build Rig.
- Use Constrain to Rig function
- observe
Expected Behavior
Would expect the rig to be constrain to our custom skeleton.
Actual Behavior
Error in Maya script editor ->
Error: TypeError: file ...\Documents\maya\modules\scripts\mgear\shifter\plebes.py line 111: Plebes.constrain_to_rig() missing 1 required positional argument: ‘nothing’
Maya Version
- Maya Version: _2024
- OS: Windows 11
mGear Version
Additional Context
I had a quick look at the plebes.py file and simply changed this
def constrain_to_rig(self, nothing):
to this
def constrain_to_rig(self):
after that, the rig was constrain correctly without any error.
🐞 Bug Report
Description
Plebes function Constrain to Rig not working on any template ( but mostly tested on custom .json that was made to work with our skeleton hierarchy ).
Steps to Reproduce
Expected Behavior
Would expect the rig to be constrain to our custom skeleton.
Actual Behavior
Error in Maya script editor ->
Error: TypeError: file ...\Documents\maya\modules\scripts\mgear\shifter\plebes.py line 111: Plebes.constrain_to_rig() missing 1 required positional argument: ‘nothing’
Maya Version
mGear Version
Additional Context
I had a quick look at the plebes.py file and simply changed this
def constrain_to_rig(self, nothing):to this
def constrain_to_rig(self):after that, the rig was constrain correctly without any error.