mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
Ignore cbId attribute on read
This commit is contained in:
parent
b931183eca
commit
4f633aa5a4
1 changed files with 4 additions and 0 deletions
|
|
@ -197,6 +197,10 @@ class MayaCreatorBase(object):
|
|||
def read_instance_node(self, node):
|
||||
node_data = read(node)
|
||||
|
||||
# Never care about a cbId attribute on the object set
|
||||
# being read as 'data'
|
||||
node_data.pop("cbId", None)
|
||||
|
||||
# Move the relevant attributes into "creator_attributes" that
|
||||
# we flattened originally
|
||||
node_data["creator_attributes"] = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue