1 回答
TA贡献1827条经验 获得超9个赞
您可能需要阅读一些基本函数教程,以基本了解如何通过函数参数传递值。另外,函数cmds.setAttr中的命令setColor没有传递给它的对象,所以...我不确定您期望它如何神奇地工作。
解决方案非常简单。查询内部的颜色索引setAttributes,然后调用setColor每个对象,将对象和颜色索引传递给函数。
import maya.cmds as cmds
if cmds.window("buildWin", exists =True):
cmds.deleteUI("buildWin", window = True)
myWindow = cmds.window("buildWin",t='DS_colorChanger',rtf=1,w=100, h=100, toolbox=True)
column = cmds.columnLayout(adj=True)
def gui(*args):
cmds.columnLayout()
cmds.button(w=300,label='build example curves',c=exampleShapes)
cmds.colorIndexSliderGrp('controlColor',
label='Control Color',
min=1,
max=31,
value=1,
columnWidth=[( 1, 80 ),( 2, 40 ), ( 3, 150 )])
cmds.button(w=300,label='Set Curve Color',c=setAttrbutes)
cmds.showWindow(myWindow)
def exampleShapes(*args):
cmds.circle(n='exampleCirc1',ch=False,nr = (0,0,0))
cmds.circle(n='exampleCirc2',ch=False,nr = (0,0,0))
cmds.circle(n='exampleCirc3',ch=False,nr = (0,0,0))
cmds.setAttr('exampleCirc1.translateX',-2)
cmds.setAttr('exampleCirc3.translateX',2)
def setAttrbutes(*args):
colorPref = cmds.colorIndexSliderGrp('controlColor',query=True,value=True) - 1 # Query color index here.
setColor('exampleCirc1', colorPref) # Call set color here with the object and color index.
setColor('exampleCirc2', colorPref)
setColor('exampleCirc3', colorPref)
def setColor(obj, colorPref): # Requires an object, and the color index to set it as.
cmds.setAttr(obj + '.overrideEnabled', 1) # Need to pass an object!!
cmds.setAttr(obj + '.overrideColor', colorPref)
顺便说一下,你确实应该打破按名称对对象进行硬编码的习惯,并 100% 地使用变量。它将为您省去很多长期的痛苦,并使您的工具更加防弹。
添加回答
举报