mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
13 lines
323 B
Python
13 lines
323 B
Python
from pyblish import api
|
|
import hiero
|
|
|
|
|
|
class CollectSequence(api.ContextPlugin):
|
|
"""Collect all Track items selection."""
|
|
|
|
order = api.CollectorOrder - 0.01
|
|
label = "Collect Sequence"
|
|
hosts = ["nukestudio"]
|
|
|
|
def process(self, context):
|
|
context.data['activeSequence'] = hiero.ui.activeSequence()
|