mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
fix(nukestudio): convert timeIn and timeOut to Inteagers
This commit is contained in:
parent
d160836577
commit
bd97edb63f
1 changed files with 2 additions and 4 deletions
|
|
@ -23,9 +23,8 @@ class CollectClips(api.ContextPlugin):
|
|||
|
||||
data[item.name()] = {
|
||||
"item": item,
|
||||
"tasks": [],
|
||||
"startFrame": item.timelineIn(),
|
||||
"endFrame": item.timelineOut()
|
||||
"startFrame": int(item.timelineIn()),
|
||||
"endFrame": int(item.timelineOut())
|
||||
}
|
||||
|
||||
for key, value in data.items():
|
||||
|
|
@ -36,7 +35,6 @@ class CollectClips(api.ContextPlugin):
|
|||
asset=value["item"].name(),
|
||||
item=value["item"],
|
||||
family=family,
|
||||
tasks=value["tasks"],
|
||||
startFrame=value["startFrame"],
|
||||
endFrame=value["endFrame"],
|
||||
handles=0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue