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

概要

bluePencilFrame [-activeViewport] [-clear] [-copy] [-cutFrame] [-delete] [-duplicate] [-exportArchive string] [-exportFrames] [-importArchive string] [-importFrames] [-insert] [-move int int int] [-moveCopy int int int] [-moveToNext] [-paste] [-relative] [-retime int] [-scale float boolean int int] [-scaleCopy float boolean int int] [-stepBack] [-stepForward]

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

Blue Pencil フレームを作成または編集するためのコマンド。

戻り値

なし

フラグ

activeViewport, clear, copy, cutFrame, delete, duplicate, exportArchive, exportFrames, importArchive, importFrames, insert, move, moveCopy, moveToNext, paste, relative, retime, scale, scaleCopy, stepBack, stepForward
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-activeViewport(-avp) create
アクティブなビューポートのカメラにフレームを作成します。
-clear(-clr) create
Maya のタイム スライダでハイライトされている範囲を使用して、1 つまたは複数のフレームからデータを消去します。
-copy(-cp) create
選択した範囲内のフレーム データをクリップボードにコピーします。
-cutFrame(-cut) create
選択した範囲内のフレーム データをクリップボードにコピーし、フレームを削除します。
-delete(-del) create
Maya のタイム スライダでハイライトされている範囲を使用して、1 つまたは複数のフレームを削除します。
-duplicate(-dup) create
前のフレームの複製である現在のタイムにフレームを挿入します。
-exportArchive(-ea) string create
指定したパスに Blue Pencil のフレーム アーカイブを書き出します。
-exportFrames(-ex) create
[Blue Pencil のフレーム書き出し](Blue Pencil Export Frame)ダイアログ ボックスを表示します。
-importArchive(-ia) string create
指定したパスから Blue Pencil のフレーム アーカイブを読み込みます。
-importFrames(-im) create
[Blue Pencil のフレーム読み込み](Blue Pencil Import Frame)ダイアログ ボックスを表示します。
-insert(-ins) create
タイム スライダでハイライト表示されている範囲を使用して、1 つまたは複数の空のフレームを挿入します。
-move(-mv) int int int create
指定した範囲のフレームを指定したオフセットだけ移動します。引数は、offset、range start、range end です。
-moveCopy(-mvc) int int int create
指定した範囲のフレームをコピーし、指定したオフセットだけ移動します。引数は、offset、range start、range end です。
-moveToNext(-mvn) create
リタイミング後に現在のタイムを次のフレームに移動します。
-paste(-pst) create
現在のタイムのクリップボードのデータを使用して新しいフレームを作成します。
-relative(-rel) create
フレーム間のスペースを追加または削除するために、リタイム アクションを設定してフレームを相対的な量だけ移動します。フラグを設定しない場合、フレーム間の間隔はリタイム値に設定されます。
-retime(-ret) int create
フレームをシフトするか、選択した範囲のフレーム間隔を変更します。
-scale(-sc) float boolean int int create
指定した範囲のフレームを指定した係数でスケールします。引数は、scale factor、scale from end (true) または beginning (false)、range start、range end です。
-scaleCopy(-scc) float boolean int int create
指定した範囲のフレームをコピーし、指定した係数でスケールします。引数は、scale factor、scale from end (true) または beginning (false)、range start、range end です。
-stepBack(-sb) create
現在のタイムを前の Blue Pencil フレームのタイムに設定します。
-stepForward(-sf) create
現在のタイムを次の Blue Pencil フレームのタイムに設定します。

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

MEL 例

// Frame actions.
bluePencilFrame -ins;
bluePencilFrame -dup;
bluePencilFrame -del;
bluePencilFrame -cut;
bluePencilFrame -cp;
bluePencilFrame -pst;
bluePencilFrame -clr;
bluePencilFrame -stepForward;
bluePencilFrame -stepBack;

// Set the distance to the next frame to 5.
bluePencilFrame -retime 5;

// Add 5 to the space to the next frame.
bluePencilFrame -retime 5 -relative;

// Set the distance to the next frame to 5 and then set the current time to the next frame.
bluePencilFrame -retime 5 -moveToNext;

// Move frames between 5 and 9 by 15 frames.
bluePencilFrame -move 15 5 9;

// Move frames between 5 and 9 by 15 frames while leaving a copy of the initial keys in their original location.
bluePencilFrame -moveCopy 15 5 9;

// Scale frames between 5 and 9 by 2 from the beginning.
bluePencilFrame -scale 2.0 0 5 9;

// Scale frames between 5 and 9 by 2 from the beginning while leaving a copy of the initial keys in their original location.
bluePencilFrame -scaleCopy 2.0 0 5 9;

// Launch import frame dialog.
bluePencilFrame -importFrames;

// Launch export frame dialog.
bluePencilFrame -exportFrames;

// Import a blue pencil frame archive without the file browser dialog
bluePencilFrame -importArchive "C:/archives/bluePencil.zip";

// Export a blue pencil frame archive without the file browser dialog
bluePencilFrame -exportArchive "C:/archives/bluePencil.zip";