ジャンプ先: 概要. 戻り値. 関連. フラグ. Python 例.
setInfinity(
objects
, [attribute=string], [controlPoints=boolean], [hierarchy=string], [postInfinite=string], [preInfinite=string], [shape=boolean])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
setInfinity は、取り消し可能、照会可能、および編集可能です。
paramCurve の最初(最後)のキーフレームの前(後)に無限タイプを設定します。
なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
copyKey, cutKey, findKeyframe, keyTangent, keyframe, keyframeOutliner, keyframeStats, pasteKey, scaleKey, snapKey
attribute, controlPoints, hierarchy, postInfinite, preInfinite, shape
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
# Set preInfinite and postInfinite type on curves of currently selected objects
#
cmds.setInfinity( pri='linear', poi='constant' )
# Set postInfinite type of cube1's curves
#
cmds.setInfinity( 'cube1', poi='oscillate' )
# Set preInfinite type of cube1's "Translate X" curve
#
cmds.setInfinity( 'cube1', pri='linear', attribute='translateX' )