Event list¶
The following is a consolidated list of events published directly by this plugin.
ftrack.connect.nuke-studio.get-context-tags¶
Synchronous. Published to retrieve context tag configuration.:
Event(
topic='ftrack.connect.nuke-studio.get-context-tags'
)
Expects returned data to be a list of tuples with each tuple of the form
(tag_name, ftrack_entity_type, regular_expression)
:
[
('episode', 'episode', 'EP(?P<value>\d+)'),
('sequence', 'sequence', 'SQ(?P<value>\d+)'),
('shot', 'shot', 'SH(?P<value>\d+)')
]
The regular expression must define a named group called value
which will
be used as the value when the expression matches. The expression is used in a
search, so use anchors if appropriate for exact matches.
Multiple expressions can be defined in order by using the pipe (|) separator if desired.