インタフェース: StatusPanel
このインタフェースは、ステータス パネルの可視性をコントロールします。ステータス パネルは、[ミニ リスナー](Mini Listener)を含む 3ds Max UI の下部に位置する領域で、システム プロンプト、選択ロック、X 値、Y 値、Z 値、時間コントロール、キーイング、およびビューポート ナビゲーションのコントロールで構成されます。
インタフェース: statusPanel
プロパティ:
StatusPanel.visible : boolean : Read|Write
ステータス パネルの表示状態を取得/設定します。true に設定した場合、ステータス パネルが表示されます。false に設定した場合、パネルは非表示になります。
statusPanel インタフェースの . visible プロパティをトラックバーとタイム スライダの可視性コントロールと組み合わせて使用すれば、ビューポートとメイン メニューだけが表示されたスーパー エキスパート モードで表示できます。
例
|
macroScript SuperExpertMode category: "MXS Help Examples"
(
--get the inverse of the curren visibility state of the time slider:
state = not(timeslider.isVisible())
--set the trackbar visiblity to the new value:
trackbar.visible = state
--set the time slider visiblity to the new value:
timeSlider.setVisible state
--if true, exit the expert mode, if false, engage it:
if state then cui.expertModeOff() else cui.expertModeOn()
--finally, set the status panel visibility:
statusPanel.visible = state
)
|