Nuke: fix mov start include handles

This commit is contained in:
Jakub Jezek 2021-05-13 15:18:49 +02:00
parent f2a084912c
commit afe47dbe1f
No known key found for this signature in database
GPG key ID: D8548FBF690B100A

View file

@ -136,7 +136,7 @@ class LoadMov(api.Loader):
read_node['frame'].setValue(str(self.script_start))
else:
# start at version frame start
read_node['frame'].setValue(str(orig_first))
read_node['frame'].setValue(str(orig_first - handle_start))
if colorspace:
read_node["colorspace"].setValue(str(colorspace))
@ -264,7 +264,7 @@ class LoadMov(api.Loader):
read_node['frame'].setValue(str(self.script_start))
else:
# start at version frame start
read_node['frame'].setValue(str(orig_first))
read_node['frame'].setValue(str(orig_first - handle_start))
if colorspace:
read_node["colorspace"].setValue(str(colorspace))