【maya】グラフエディタなどが表示されない場合

デュアルモニタをシングルに直したり、違うモニターを接続するとたまにグラフエディタが画面外に行って表示されない場合があります。
Sometimes windows in maya gets lost when switching from dual monitors to single monitor.

そういう時の解決方法として次のmelでウィンドウの表示位置を初期化します。
Below is a mel that initializes the position of a window in maya.


//mayaで表示してるウィンドウ一覧が表示される
//display names of windows opened in maya
lsUI -windows;
//lsUIで表示されたウィンドウ名を使って初期化する 
//use the window name you got with command lsUI to initialize           
window -e -tlc 0 0 graphEditor1Window;   //グラフエディターの場合, graph editor
window -e -tlc 0 0 outlinerPanel1Window; //アウトライナーの場合, outliner

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA