def createMessage(host="none", attr="none", target="none", *args):
"""creates a message attr on object with target as value. Args are: 'host'-some object to hold the message attr, 'attr'-the name of the message attribute to create, and 'target'-the host to be the value of the message attr"""
cmds.addAttr(host, at='message', ln=attr)
cmds.connectAttr("%s.message"%target, "%s.%s"%(host, attr))
return("%s.%s"%(host, attr))
评论列表
文章目录