def extrudeUI():
if cmds.window("curveExtrudeWin", exists=True):
cmds.deleteUI("curveExtrudeWin")
w, h = 300, 220
widgets["win"] = cmds.window("curveExtrudeWin", w=w, h=h)
widgets["CLO"] = cmds.columnLayout(w=w, h=h)
widgets["text1"] = cmds.text(l="Name the rig to be created:")
cmds.separator(h=5)
widgets["nameTFG"] = cmds.textFieldGrp(l="Rig Name: ", cal=[(1, "left"),(2, "left")],cw=[(1, 50),(2, 245)])
cmds.separator(h=5)
widgets["text2"] = cmds.text(l="Select the path curve.\nOptionally, "
"then select profile crv and the cap rig in that order\n"
"Note that cap rig and profile curve should be y up!", al="left")
cmds.separator(h=5)
widgets["extrBut"] = cmds.button(l="Create Extrusion Rig!", w=300, h=35, bgc = (.4, .5,.4), c=prepExtrude)
cmds.separator(h=10)
widgets["text3"] = cmds.text(l="Once you've attached a material :\nselect the control, then any place2DTexture nodes", al="left")
cmds.separator(h=5)
widgets["textureBut"] = cmds.button(l="Connect Ctrl to place2DTexture nodes!", w=300, h=35, bgc = (.25, .35, .5), c = connectTexture)
cmds.window(widgets["win"], e=True, w=w, h=h)
cmds.showWindow(widgets["win"])
评论列表
文章目录