mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
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:
commit
8d511c5512
1 changed files with 4 additions and 4 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue