mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
Fixed problem with missing attribute in avalon properties
This commit is contained in:
parent
b7ef4b34c6
commit
9ad9c5b52e
4 changed files with 8 additions and 4 deletions
|
|
@ -156,7 +156,8 @@ class CacheModelLoader(plugin.AssetLoader):
|
|||
"libpath": libpath,
|
||||
"asset_name": asset_name,
|
||||
"parent": str(context["representation"]["parent"]),
|
||||
"family": context["representation"]["context"]["family"]
|
||||
"family": context["representation"]["context"]["family"],
|
||||
"objectName": group_name
|
||||
}
|
||||
|
||||
self[:] = objects
|
||||
|
|
|
|||
|
|
@ -165,7 +165,8 @@ class FbxModelLoader(plugin.AssetLoader):
|
|||
"libpath": libpath,
|
||||
"asset_name": asset_name,
|
||||
"parent": str(context["representation"]["parent"]),
|
||||
"family": context["representation"]["context"]["family"]
|
||||
"family": context["representation"]["context"]["family"],
|
||||
"objectName": group_name
|
||||
}
|
||||
|
||||
self[:] = objects
|
||||
|
|
|
|||
|
|
@ -141,7 +141,8 @@ class BlendModelLoader(plugin.AssetLoader):
|
|||
"libpath": libpath,
|
||||
"asset_name": asset_name,
|
||||
"parent": str(context["representation"]["parent"]),
|
||||
"family": context["representation"]["context"]["family"]
|
||||
"family": context["representation"]["context"]["family"],
|
||||
"objectName": group_name
|
||||
}
|
||||
|
||||
self[:] = objects
|
||||
|
|
|
|||
|
|
@ -175,7 +175,8 @@ class BlendRigLoader(plugin.AssetLoader):
|
|||
"libpath": libpath,
|
||||
"asset_name": asset_name,
|
||||
"parent": str(context["representation"]["parent"]),
|
||||
"family": context["representation"]["context"]["family"]
|
||||
"family": context["representation"]["context"]["family"],
|
||||
"objectName": group_name
|
||||
}
|
||||
|
||||
self[:] = objects
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue