blurstudio / TwistSpline

A smoothly reparameterizing Bezier spline that also interpolates orientations
MIT License
92 stars 42 forks source link

outTanCtrl not found in maya cmds. #18

Closed kmarcinowski closed 4 years ago

kmarcinowski commented 4 years ago

Hello, I've compiled .mll for Maya 2018 but can not build the rig using"twistSplineBuilder.py". There is no such function in maya cmds as "outTanCtrl" <- which seems correct at least with default one. Could you please advise me a bit on how I should proceed with that?

# Error: AttributeError: file <maya console> line 138: 'module' object has no attribute 'outTanCtrl' # Line 138: outTanCtrl = cmds.outTanCtrl(radius=v, constructionHistory=False)[0]

Thank you in advance, Krzysztof

tbttfox commented 4 years ago

Ah, that just looks like a find/replace gone bad. I can't actually test this fix right now, but that line should probably be: outTanCtrl = cmds.circle(radius=v, constructionHistory=False)[0]

kmarcinowski commented 4 years ago

Thank you ;) That was it!

tbttfox commented 4 years ago

Ok, committed a fix to this (among other things)