mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Nuke: adding print of name of node which is processed
This commit is contained in:
parent
5b2e9da304
commit
961013e9af
1 changed files with 2 additions and 4 deletions
|
|
@ -2316,14 +2316,13 @@ Reopening Nuke should synchronize these paths and resolve any discrepancies.
|
|||
''' Adds correct colorspace to write node dict
|
||||
|
||||
'''
|
||||
for node in nuke.allNodes(filter="Group"):
|
||||
for node in nuke.allNodes(filter="Group", group=self._root_node):
|
||||
log.info("Setting colorspace to `{}`".format(node.name()))
|
||||
|
||||
# get data from avalon knob
|
||||
avalon_knob_data = read_avalon_data(node)
|
||||
node_data = get_node_data(node, INSTANCE_DATA_KNOB)
|
||||
|
||||
if avalon_knob_data.get("id") != "pyblish.avalon.instance":
|
||||
|
||||
if (
|
||||
# backward compatibility
|
||||
# TODO: remove this once old avalon data api will be removed
|
||||
|
|
@ -2350,7 +2349,6 @@ Reopening Nuke should synchronize these paths and resolve any discrepancies.
|
|||
):
|
||||
continue
|
||||
|
||||
|
||||
nuke_imageio_writes = None
|
||||
if avalon_knob_data:
|
||||
# establish families
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue