window -width 200 -height 20 -title "ツール設定" -rtf 1;
columnLayout -adjustableColumn true;
gridLayout -numberOfColumns 6 -cellWidth 100 -cellHeight 20;
//checkBox -label "名前" -onCommand "チェックオン時のコマンド・スクリプト" -offCommand "チェックオフ時のコマンド・スクリプト"
checkBox -label "微調整モード" -onCommand "strsTweakMode true" -offCommand "strsTweakMode false";
checkBox -label "UVを保持" -onCommand "setTRSPreserveUVs true" -offCommand "setTRSPreserveUVs false";
checkBox -label "シンメトリ X " -onCommand "reflectionSetMode objectx;" -offCommand "reflectionSetMode none;";
checkBox -label "ソフト選択" -onCommand "softSelect -e -softSelectEnabled true;" -offCommand "softSelect -e -softSelectEnabled false;";
checkBox -label "フェースセンター選択" -onCommand "polySelectConstraint -wholeSensitive off;" -offCommand "polySelectConstraint -wholeSensitive on;";
checkBox -label "頂点選択" -onCommand "SelectVertexMask;" -offCommand "SelectToggleMode;";
setParent..;
gridLayout -numberOfColumns 6 -cellWidth 100 -cellHeight 20;
button -label "OBJECT" -command "manipMoveContext -e -mode 0 Move;manipScaleContext -e -mode 0 Scale;";
button -label "LOCAL" -command "manipMoveContext -e -mode 1 Move;manipRotateContext -e -mode 0 Rotate;manipScaleContext -e -mode 1 Scale;";
button -label "WORLD" -command "manipMoveContext -e -mode 2 Move;manipRotateContext -e -mode 1 Rotate;manipScaleContext -e -mode 2 Scale;";
button -label "NORMAL" -command "manipMoveContext -e -mode 3 Move;manipScaleContext -e -mode 3 Scale;";
button -label "FACE_LOCAL" -command "manipMoveContext -e -mode 9 Move;manipScaleContext -e -mode 9 Scale;";
button -label "GIMBAL" -command "manipRotateContext -e -mode 2 Rotate;";
setParent..;
showWindow;