pymel.core.nodetypes.TimeEditorTracks

digraph inheritancee9f2c9c06b { rankdir=TB; ranksep=0.15; nodesep=0.15; size="8.0, 12.0"; "DependNode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "PyNode" -> "DependNode" [arrowsize=0.5,style="setlinewidth(0.5)"]; "ProxyUnicode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="../pymel.util.utilitytypes/pymel.util.utilitytypes.ProxyUnicode.html#pymel.util.utilitytypes.ProxyUnicode",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "PyNode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="../pymel.core.general/pymel.core.general.PyNode.html#pymel.core.general.PyNode",style="setlinewidth(0.5)",tooltip="Abstract class that is base for all pymel nodes classes.",height=0.25,shape=box,fontsize=8]; "ProxyUnicode" -> "PyNode" [arrowsize=0.5,style="setlinewidth(0.5)"]; "TimeEditorTracks" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="#pymel.core.nodetypes.TimeEditorTracks",style="setlinewidth(0.5)",tooltip="class counterpart of mel function `timeEditorTracks`",height=0.25,shape=box,fontsize=8]; "DependNode" -> "TimeEditorTracks" [arrowsize=0.5,style="setlinewidth(0.5)"]; }

class TimeEditorTracks(*args, **kwargs)

class counterpart of mel function timeEditorTracks

Time Editor tracks commands

MAttrClass = Enum( EnumValue('MAttrClass', 1, 'localDynamicAttr'), EnumValue('MAttrClass', 2, 'normalAttr'), EnumValue('MAttrClass', 3, 'extensionAttr'), EnumValue('MAttrClass', 4, 'invalidAttr'))
MdgTimerMetric = Enum( EnumValue('MdgTimerMetric', 0, 'metric_callback'), EnumValue('MdgTimerMetric', 1, 'metric_compute'), EnumValue('MdgTimerMetric', 2, 'metric_dirty'), EnumValue('MdgTimerMetric', 3, 'metric_draw'), EnumValue('MdgTimerMetric', 4, 'metric_fetch'), EnumValue('MdgTimerMetric', 5, 'metric_callbackViaAPI'), EnumValue('MdgTimerMetric', 6, 'metric_callbackNotViaAPI'), EnumValue('MdgTimerMetric', 7, 'metric_computeDuringCallback'), EnumValue('MdgTimerMetric', 8, 'metric_computeNotDuringCallback'), EnumValue('MdgTimerMetric', 9, 'metrics'))
MdgTimerState = Enum( EnumValue('MdgTimerState', 0, 'off'), EnumValue('MdgTimerState', 1, 'on'), EnumValue('MdgTimerState', 2, 'uninitialized'), EnumValue('MdgTimerState', 3, 'invalidState'))
MdgTimerType = Enum( EnumValue('MdgTimerType', 0, 'type_self'), EnumValue('MdgTimerType', 1, 'type_inclusive'), EnumValue('MdgTimerType', 2, 'type_count'), EnumValue('MdgTimerType', 3, 'types'))
addTrack(val=True, **kwargs)

Add new track at the track index specified. Indices are 0-based. Specify -1 to add the track at the end.

Derived from mel command maya.cmds.timeEditorTracks

getActiveClipWeight(**kwargs)

Get the clip weight at the specified time.

Derived from mel command maya.cmds.timeEditorTracks

getActiveClipWeightId(**kwargs)

Get the clip ID carrying the active clip weight at the specified time.

Derived from mel command maya.cmds.timeEditorTracks

getAllClips(**kwargs)

Return a list of clip IDs under the specified track.

Derived from mel command maya.cmds.timeEditorTracks

getAllTracks(**kwargs)

Return a list of strings for all the immediate tracks for the given tracks node in the format tracksNode:trackIndex.

Derived from mel command maya.cmds.timeEditorTracks

getAllTracksRecursive(**kwargs)

Return a list of strings for all the tracks for the given tracks node, or return a list of strings for all tracks of all tracks nodes in the format tracksNode:trackIndex. If the given root tracks node is from a composition, this command returns the tracks under that composition, including the tracks within groups that is under the same composition.

Derived from mel command maya.cmds.timeEditorTracks

getComposition(**kwargs)

Return the composition the specified track belongs to.

Derived from mel command maya.cmds.timeEditorTracks

getPlugIndex(**kwargs)

Get the plug index of the specified track.

Derived from mel command maya.cmds.timeEditorTracks

getSelectedTracks(**kwargs)

Return a list of the indices for all the selected tracks for the given tracks node, or return a list of strings for all selected tracks of all tracks nodes in the format tracksNode:trackIndex.

Derived from mel command maya.cmds.timeEditorTracks

getTrackGhost(**kwargs)

Ghost all clips under track.

Derived from mel command maya.cmds.timeEditorTracks

getTrackIndex(**kwargs)

Specify the track index. This flag is used in conjunction with the other flags. In query mode, this flag can accept a value.

Derived from mel command maya.cmds.timeEditorTracks

getTrackMuted(**kwargs)

Return whether the track is muted.

Derived from mel command maya.cmds.timeEditorTracks

getTrackName(**kwargs)

Display name of the track.

Derived from mel command maya.cmds.timeEditorTracks

getTrackSolo(**kwargs)

Return whether the track is soloed.

Derived from mel command maya.cmds.timeEditorTracks

getTrackType(**kwargs)

Specify the track type. Can only be used together with -at/addTrack. Does not work by itself. In query mode, return the integer corresponding to the track type. 0: Animation Track (Default)1: Audio Track Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.timeEditorTracks

path(val=True, **kwargs)

Full path of a track node or a track on which to operate. For example: composition1|track1|group; composition1|track1. In query mode, this flag can accept a value.

Derived from mel command maya.cmds.timeEditorTracks

removeTrack(val=True, **kwargs)

Remove track at given index. It is a multi-use flag.

Derived from mel command maya.cmds.timeEditorTracks

removeTrackByPath(val=True, **kwargs)

Remove track at given path. It is a multi-use flag. For example: composition1|track1|group|track1;

Derived from mel command maya.cmds.timeEditorTracks

reorderTrack(val=True, **kwargs)

Move the track relative to other tracks. The first argument is the track index (0-based). The second argument can be a positive or negative number to indicate the steps to move. Positive numbers move forward and negative numbers move backward.

Derived from mel command maya.cmds.timeEditorTracks

setPlugIndex(val=True, **kwargs)

Get the plug index of the specified track.

Derived from mel command maya.cmds.timeEditorTracks

setTrackGhost(val=True, **kwargs)

Ghost all clips under track.

Derived from mel command maya.cmds.timeEditorTracks

setTrackIndex(val=True, **kwargs)

Specify the track index. This flag is used in conjunction with the other flags. In query mode, this flag can accept a value.

Derived from mel command maya.cmds.timeEditorTracks

setTrackMuted(val=True, **kwargs)

Return whether the track is muted.

Derived from mel command maya.cmds.timeEditorTracks

setTrackName(val=True, **kwargs)

Display name of the track.

Derived from mel command maya.cmds.timeEditorTracks

setTrackSolo(val=True, **kwargs)

Return whether the track is soloed.

Derived from mel command maya.cmds.timeEditorTracks

setTrackType(val=True, **kwargs)

Specify the track type. Can only be used together with -at/addTrack. Does not work by itself. In query mode, return the integer corresponding to the track type. 0: Animation Track (Default)1: Audio Track Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.timeEditorTracks