fix(nuke): not necessary to do it on all write nodes

This commit is contained in:
Jakub Jezek 2019-11-21 10:22:54 +01:00
parent 4201ba173d
commit 444071e2d0

View file

@ -105,6 +105,10 @@ def writes_version_sync():
for each in nuke.allNodes():
if each.Class() == 'Write':
# check if the node is avalon tracked
if "AvalonTab" not in each.knobs():
continue
avalon_knob_data = avalon.nuke.get_avalon_knob_data(
each, ['avalon:', 'ak:'])