mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
OP-3909 - fix - use values, filtering is later
This commit is contained in:
parent
e9834d973d
commit
64f8e2fc9c
2 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ class RenderCreator(Creator):
|
|||
instances = cache_and_get_instances(self,
|
||||
"openpype.aftereffects.instances",
|
||||
self.host.list_instances)
|
||||
for instance_data in instances.get(self.family, []):
|
||||
for instance_data in instances.values():
|
||||
# legacy instances have family=='render' or 'renderLocal', use them
|
||||
creator_id = (instance_data.get("creator_identifier") or
|
||||
instance_data.get("family", '').replace("Local", ''))
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class AEWorkfileCreator(AutoCreator):
|
|||
instances = cache_and_get_instances(self,
|
||||
"openpype.aftereffects.instances",
|
||||
self.host.list_instances)
|
||||
for instance_data in instances.get(self.family, []):
|
||||
for instance_data in instances.values():
|
||||
creator_id = instance_data.get("creator_identifier")
|
||||
if creator_id == self.identifier:
|
||||
subset_name = instance_data["subset"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue