MEL 腰ルート等の1ジョイントの回転フリーズ

使用法は最初に腰ルートジョイントを選択
次に脚の付け根にあたるジョイントの片方を追加選択
次にもう片方の脚の付け根にあたるジョイントを追加選択
以上3ジョイント選択後、実行すると腰ルートジョイントのみ回転フリーズできます。

ハンドルを動かす回転角度に向けて回転し回転フリーズします。
ジョイントのみ回転フリーズのみにする場合下記の行を削除して使用してください。
rotate -r -os 0 0 90 ;
makeIdentity -apply true -t 0 -r 1 -s 0 -n 0;




string $H_01= `ls -sl`;
PickWalkUp;
string $H_02
= `ls -sl`;

select -r $H_01[0];

Unparent;

select -r $H_01[1];
Unparent;

select -r $H_01[2];
Unparent;

select -r $H_01[0];
makeIdentity -apply true -t 0 -r 0 -s 0 -n 0 -jointOrient;
rotate -r -os 0 0 90 ;
makeIdentity -apply true -t 0 -r 1 -s 0 -n 0;

select -r $H_01[0];
select -tgl $H_02[0];
Parent;

select -r $H_01[1];
select -tgl $H_01[0];
Parent;

select -r $H_01[2];
select -tgl $H_01[0];
Parent;

PickWalkUp;