プリファレンス変更のアイコンをクリックし、カテゴリのマニュピレータをクリックし、ピボット マニピュレータの方向ハンドルのチェックを外す。
//Pivot方向ハンドル非表示、ハンドルサイズを0、クリック&ドラッグ、UV微調整と移動ツールの切り替えのチェックボックスウインドウを作成
window -width 200 -height 20 -title "Pivotハンドル・サイズ" -rtf 1;
columnLayout -adjustableColumn true;
gridLayout -numberOfColumns 4 -cellWidth 120 -cellHeight 20;
//checkBox -label "名前" -onCommand "チェックオン時のコマンド・スクリプト" -offCommand "チェックオフ時のコマンド・スクリプト"
checkBox -label "方向ハンドル非表示" -onCommand "prefWndToggleShowPivotManipHandle false;" -offCommand "prefWndToggleShowPivotManipHandle true;";
checkBox -label "サイズ0" -onCommand "manipOptions -s 0.1;manipOptions -hs 1" -offCommand "manipOptions -s 1.5;manipOptions -hs 35";
checkBox -label "クリック&ドラッグ" -onCommand "selectPref -clickDrag true;" -offCommand "selectPref -clickDrag false;";
checkBox -label "UV微調整" -onCommand SetLastUVBrushTool_ -offCommand "MoveTool;";
setParent..;
showWindow;
global proc SetLastUVBrushTool_()
{
setToolTo texTweakSuperContext; txtWndUpdateEditor("polyTexturePlacementPanel1", "textureWindow", "null", 101);
}