mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
feat: create_saver now respects changes to creator_attributes
This commit is contained in:
parent
289eb1f4c8
commit
839e8153e3
1 changed files with 3 additions and 4 deletions
|
|
@ -119,10 +119,9 @@ class CreateSaver(NewCreator):
|
|||
if "subset" not in data:
|
||||
return
|
||||
|
||||
original_subset = tool.GetData("openpype.subset")
|
||||
subset = data["subset"]
|
||||
if original_subset != subset:
|
||||
self._configure_saver_tool(data, tool, subset)
|
||||
original_data = tool.GetData("openpype")
|
||||
if original_data != data["creator_attributes"]:
|
||||
self._configure_saver_tool(data, tool, data["subset"])
|
||||
|
||||
def _configure_saver_tool(self, data, tool, subset):
|
||||
formatting_data = deepcopy(data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue