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

概要

textManip [-visible boolean]

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

テキスト マニピュレータを表示/非表示にします。

戻り値

なし

戻り値の型は照会モードでは照会フラグが基になります。

フラグ

visible
ロング ネーム(ショート ネーム) 引数型 プロパティ
-visible(-v) boolean createquery
テキスト マニピュレータを表示/非表示にします。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL 例

// Hide the text manip, then call headsUpMessage to draw a message in the 3d view. You can't see the message now because it's invisible
textManip -v 0;
headsUpMessage -time 5.0 "Ouch!"

// Show the text manip, the message becomes visible now
textManip -v 1;