mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Ignore transitions.
This commit is contained in:
parent
6297607ff7
commit
35e6e90db4
1 changed files with 6 additions and 0 deletions
|
|
@ -69,6 +69,12 @@ class CollectShots(pyblish.api.InstancePlugin):
|
|||
|
||||
instances = []
|
||||
for child in track.each_child():
|
||||
|
||||
# Transitions are ignored, because Clips have the full frame
|
||||
# range.
|
||||
if isinstance(child, otio.schema.transition.Transition):
|
||||
continue
|
||||
|
||||
frame_start = child.range_in_parent().start_time.value
|
||||
frame_end = child.range_in_parent().end_time_inclusive().value
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue