Creates a context for manipulating in and/or out tangent beads on the motion trail
Flags:
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 context Flag 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
# Create a snapshot bead context that will show in tangents
ctx = pm.snapshotBeadCtx(inTangent = True)
pm.setToolTo(ctx)