Handle message type attribute

This commit is contained in:
Jérôme LORRAIN 2021-12-13 10:45:30 +01:00
parent 4eaea20c90
commit c78d4d89a4

View file

@ -489,6 +489,8 @@ class CollectLook(pyblish.api.InstancePlugin):
if not cmds.attributeQuery(attr, node=node, exists=True):
continue
attribute = "{}.{}".format(node, attr)
if cmds.getAttr(attribute, type=True) == "message":
continue
node_attributes[attr] = cmds.getAttr(attribute)
attributes.append({"name": node,