ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.

概要

recordAttr [-attribute string] [-delete]

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

記録するアトリビュートをセットアップします。記録コマンドを実行すると、このアトリビュートのすべての変更内容が記録されます。記録が停止すると、この変更内容はキーフレームに変わります。

アトリビュートを指定しないと、ノードのすべてのアトリビュートが記録されます。

照会フラグを使用すると、記録されているアトリビュートのリストが返されます。

戻り値

なし

照会モードでは、戻り値のタイプは照会されたフラグに基づきます。

関連

assignInputDevice, attachDeviceAttr, detachDeviceAttr, devicePanel, getInputDeviceRange, getModifiers, listDeviceAttachments, listInputDeviceAxes, listInputDeviceButtons, listInputDevices, setAttrMapping, setInputDeviceMapping, unassignInputDevice

フラグ

attribute, delete
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-attribute(-at) string createmultiuse
記録するアトリビュートを指定します。
-delete(-d) create
指定したアトリビュートを記録しません。

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます コマンド内でフラグを複数回使用できます。

MEL 例

// This command will setup the translateX and translateY
// attributes for recording.
recordAttr -at "translateX" -at "translateZ";