移動先: 概要 戻り値 MEL 例.

概要

ctxCompletion

ctxCompletion は 「元に戻す」が可能、「照会」が不可能「編集」が不可能 です。

このコマンドを使うと、カレント コンテキストが実行中のことを終了し、作業しているすべてのオブジェクトが作成されます。

戻り値

なし

MEL 例

// Create a curve
curve -p 0 0 0 -p 3 5 6 -p 5 6 7 -p 9 9 9 -p 12 10 2 -k 0 -k 0 -k 0 -k 1 -k 2 -k 2 -k 2;
// Result: curve1 //

// Create a new curve editor context to modify the curve, then switch to it
// You can modify the curve using the manipulator handle
curveEditorCtx curveEditorCtx1;
setToolTo curveEditorCtx1;

// This command ends curve editing. The manipulator handle will disappear, leaving the modified curve
ctxCompletion;