トップ 差分 一覧 ソース 検索 ヘルプ RSS ログイン

unity_ngui_get_root_size

[NGUI] UI Rootの全体サイズを取得


UI Rootの全体サイズをスクリプトで取得します。

float rootWidth  = 0.0f;
float rootHeight = 0.0f;
GameObject gameObject = GameObject.Find("UI Root") as GameObject;
  if (gameObject != null) {
    UIPanel panel = gameObject.GetComponent("UIPanel") as UIPanel;
    if (panel != null) {
       rootWidth  = panel.width;
       rootHeight = panel.height;
    }
  }
}

上記のrootWidth,rootHeightに全体の幅と高さが入ります。


最終更新時間:2014年02月07日 15時18分26秒