Le mardi 6 novembre 2018 09:57:50 UTC-5, Neil Roche a écrit :
> I would guess that the curveFromSurfaceIso node will work like a parametric
> curve irrespective of whether parametric is set on or off as you have the min
> and max U values at 0 and 1 and it has no concept of where to draw any cvs
I would guess that the curveFromSurfaceIso node will work like a parametric
curve irrespective of whether parametric is set on or off as you have the
min and max U values at 0 and 1 and it has no concept of where to draw any
cvs inbetween. Once you have created the curve by connecting the
outp
Le lundi 5 novembre 2018 13:28:25 UTC-5, Neil Roche a écrit :
> Hi,
>
>
> Because of a weird bug in Maya when you set parametric length on a motion
> path you need to set the opposite;
>
>
> cmds.setAttr(mp + '.fractionMode', True)
>
>
> actually turns parametric off.
>
>
> So you need
Hi,
Because of a weird bug in Maya when you set parametric length on a motion
path you need to set the opposite;
cmds.setAttr(mp + '.fractionMode', True)
actually turns parametric off.
So you need to do
cmds.setAttr(mp + '.fractionMode', not True) or cmds.setAttr(mp +
'.fractionMode',