Merged in tokejepsen/pype/hotfix/load_sequence (pull request #248)

Updating read nodes was erroring because startFrame/endFrame came in as floats.

Approved-by: Milan Kolar <milan@orbi.tools>
This commit is contained in:
Toke Jepsen 2019-08-04 20:39:38 +00:00 committed by Milan Kolar
commit 8d511c5512

View file

@ -228,10 +228,10 @@ class LoadSequence(api.Loader):
# Set the global in to the start frame of the sequence
loader_shift(node, first, relative=True)
node["origfirst"].setValue(first)
node["first"].setValue(first)
node["origlast"].setValue(last)
node["last"].setValue(last)
node["origfirst"].setValue(int(first))
node["first"].setValue(int(first))
node["origlast"].setValue(int(last))
node["last"].setValue(int(last))
updated_dict = {}
updated_dict.update({