mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
feat(nukestudio): adding collecting sequence
This commit is contained in:
parent
e215113c13
commit
e9dca46539
1 changed files with 13 additions and 0 deletions
13
pype/plugins/nukestudio/publish/collect_sequence.py
Normal file
13
pype/plugins/nukestudio/publish/collect_sequence.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from pyblish import api
|
||||
import hiero
|
||||
|
||||
|
||||
class CollectSequence(api.ContextPlugin):
|
||||
"""Collect all Track items selection."""
|
||||
|
||||
order = api.CollectorOrder
|
||||
label = "Collect Sequence"
|
||||
hosts = ["nukestudio"]
|
||||
|
||||
def process(self, context):
|
||||
context.data['activeSequence'] = hiero.ui.activeSequence()
|
||||
Loading…
Add table
Add a link
Reference in a new issue