Home Website Youtube GitHub

Scripting the Rope tool for a post custom step

Hello,
Does anyone know how to go about adding the scripting the Rope tool to add to my post custom steps?

1 Like

yes it is possible:

from mgear.rigbits import rope
rope.rope(DEF_nb=10,
         ropeName="rope",
         keepRatio=False,
         lvlType="transform",
         oSel=None)

oSel should be a list of 2 curves( It can be pyNode or the string name of the curves) i.e: [“curve1”, “curve2”]

3 Likes

thank you so so much!!!

1 Like