The sequenceManager command manages sequences, shots, and their related scenes. In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
addSequencerAudio (asa) | unicode | ||
|
|||
attachSequencerAudio (ata) | unicode | ||
|
|||
currentShot (cs) | unicode | ||
|
|||
currentTime (ct) | time | ||
|
|||
listSequencerAudio (lsa) | unicode | ||
|
|||
listShots (lsh) | bool | ||
|
|||
modelPanel (mp) | unicode | ||
|
|||
node (nd) | unicode | ||
|
|||
writableSequencer (ws) | unicode | ||
|
Derived from mel command maya.cmds.sequenceManager
Example:
import pymel.core as pm
import maya.cmds as cmds
// Get the current Maya time, based on the Sequence time
pm.sequenceManager(q=True, currentTime=True);