Creates a context for manipulating in and/or out tangent beads on the motion trail
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
exists (ex) | bool | ||
history (ch) | bool | ||
image1 (i1) | unicode | ||
image2 (i2) | unicode | ||
image3 (i3) | unicode | ||
inTangent (i) | bool | ||
|
|||
name (n) | unicode | ||
outTangent (o) | bool | ||
Indicates that we will be showing beads for the out tangent when entering the contextFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.snapshotBeadCtx
Example:
import pymel.core as pm
import maya.cmds as cmds
# Create a snapshot bead context that will show in tangents
ctx = pm.snapshotBeadCtx(inTangent = True)
pm.setToolTo(ctx)