fix(nuke): thumnail review order error

This commit is contained in:
Jakub Jezek 2020-01-13 12:55:46 +01:00
parent 975683cd08
commit 68b33cbb9f

View file

@ -34,7 +34,6 @@ class ExtractThumbnail(pype.api.Extractor):
staging_dir = instance.data[
"representations"][0]["stagingDir"].replace("\\", "/")
instance.data["stagingDir"] = staging_dir
instance.data["representations"][0]["tags"] = ["review"]
else:
instance.data["representations"] = []
# get output path
@ -119,7 +118,7 @@ class ExtractThumbnail(pype.api.Extractor):
write_node["raw"].setValue(1)
write_node.setInput(0, previous_node)
temporary_nodes.append(write_node)
tags = ["thumbnail"]
tags = ["thumbnail", "review"]
# retime for
first_frame = int(last_frame) / 2