言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

GUIElement.GetScreenRect

Switch to Manual
public function GetScreenRect(camera: Camera = null): Rect;

Description

GUIElementのスクリーン座標であるRectオブジェクトを取得します

If no camera is given a camera filling the entire game window will be assumed.

	function Start () {
		var r : Rect = guiTexture.GetScreenRect ();
		Debug.Log ("This gui element is " + r.width + " pixel wide.");
	}