mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Hiero: ignoring TimeWarp effect on collection
This commit is contained in:
parent
6d41804ff1
commit
1beb6c8344
2 changed files with 3 additions and 4 deletions
|
|
@ -55,10 +55,7 @@ class PreCollectClipEffects(pyblish.api.InstancePlugin):
|
|||
if not (track_index <= _track_index):
|
||||
continue
|
||||
|
||||
if "TimeWarp" in sitem.name():
|
||||
retime_effect = True
|
||||
else:
|
||||
effect = self.add_effect(_track_index, sitem)
|
||||
effect = self.add_effect(_track_index, sitem)
|
||||
|
||||
if effect:
|
||||
effects.update(effect)
|
||||
|
|
|
|||
|
|
@ -384,6 +384,8 @@ class PrecollectInstances(pyblish.api.ContextPlugin):
|
|||
subtracks = []
|
||||
subTrackItems = flatten(clip.parent().subTrackItems())
|
||||
for item in subTrackItems:
|
||||
if "TimeWarp" in item.name():
|
||||
continue
|
||||
# avoid all anotation
|
||||
if isinstance(item, hiero.core.Annotation):
|
||||
continue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue