Hi,
Great set of tools you've shared here. Thank you!
I'm currently getting this error when I run Attach to Curve from the Rig Tools menu.
# TypeError: attachToCurve() got an unexpected keyword argument 'worldUpObject' //
I think this line:
|
glTools.utils.attach.attachToCurve(curve=curve,transform=transform,uValue=param,useClosestPoint=closestPoint,orient=orient,upVector=upVec,worldUpObject=upVecObj,uAttr=paramAttr,prefix=prefix) |
should be:
glTools.utils.attach.attachToCurve(curve=curve,transform=transform,uValue=param,useClosestPoint=closestPoint,orient=orient,upVector=upVec,upObject=upVecObj,uAttr=paramAttr,prefix=prefix)
As the attach.attachToCurve() parameter is called 'upObject'
Hi,
Great set of tools you've shared here. Thank you!
I'm currently getting this error when I run Attach to Curve from the Rig Tools menu.
# TypeError: attachToCurve() got an unexpected keyword argument 'worldUpObject' //I think this line:
glTools/ui/curve.py
Line 131 in 8ff0899
should be:
As the attach.attachToCurve() parameter is called 'upObject'
glTools/utils/attach.py
Line 19 in 8ff0899