mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Nuke: fix the order of plugin to be after anatomy data collector
also convert anatomy data with deepcopy
This commit is contained in:
parent
f3baace668
commit
0c517a12a6
2 changed files with 3 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ class CollectNukeWrites(pyblish.api.InstancePlugin,
|
|||
publish.ColormanagedPyblishPluginMixin):
|
||||
"""Collect all write nodes."""
|
||||
|
||||
order = pyblish.api.CollectorOrder - 0.48
|
||||
order = pyblish.api.CollectorOrder + 0.0021
|
||||
label = "Collect Writes"
|
||||
hosts = ["nuke", "nukeassist"]
|
||||
families = ["render", "prerender", "image"]
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
from copy import deepcopy
|
||||
import inspect
|
||||
from abc import ABCMeta
|
||||
from pprint import pformat
|
||||
|
|
@ -323,7 +324,7 @@ class ColormanagedPyblishPluginMixin(object):
|
|||
|
||||
project_name = context.data["projectName"]
|
||||
host_name = context.data["hostName"]
|
||||
anatomy_data = context.data["anatomyData"]
|
||||
anatomy_data = deepcopy(context.data["anatomyData"])
|
||||
project_settings_ = context.data["project_settings"]
|
||||
|
||||
config_data = get_imageio_config(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue