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

概要

dropoffLocator float float string selectionList

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

選択したカーブ ポイントごとに、1 つ以上のドロップオフ ロケータがワイヤ カーブに追加されます。ドロップオフ ロケータを使用すると、カーブ ポイントについてワイヤ デフォメーションをローカルで調整できます。

引数は 2 つの float、エンベロープとパーセンテージ、その後にワイヤ ノード名とカーブ ポイントが続きます。

戻り値

string[]ロケータ名

MEL 例

// create a wire deformer
//
polyPlane -w 1 -h 1 -sx 25 -sy 25 -ax 0 1 0 -cuv 2 -ch 1;
curve -d 3 -p -10 0 0 -p -6 0 10 -p -3 0 -10 -p 10 0 0 -k 0 -k 0 -k 0  -k 1 -k 1 -k 1;
select -r pPlane1;
wire -w curve1;

// add a locator at curve point 0.5, with envelope 2 and percent 1
select -r curve1.u[0.5];
dropoffLocator 2.0 1.0 wire1;