ジャンプ先: 概要. 戻り値. 関連. Python 例.

概要

setKeyPath( [object] )

注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。

setKeyPath は、取り消し可能、照会不可能、および 編集不可能 です。

setKeyPath コマンドは、現在のタイムの選択されているオブジェクトの現在位置に基づいてパス(NURBS カーブ)を作成または編集します。

戻り値

string[](作成されたカーブ ノードと motionPath ノードの名前)

関連

autoKeyframe, findKeyframe, setDrivenKeyframe, setKeyframe

Python 例

import maya.cmds as cmds

# Apply setKeyPath command on the currently selected object at current time:
cmds.setKeyPath()
# Apply setKeyPath command on an object named "ball" at current time:
cmds.setKeyPath( 'ball' )