Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GetScreenRect(camera: Camera = null): Rect;
Rect GetScreenRect(Camera camera = null);
def GetScreenRect(camera as Camera = null) as Rect

Description

Returns bounding rectangle of GUIElement in screen coordinates.

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.");
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Start() {
        Rect r = guiTexture.GetScreenRect();
        Debug.Log("This gui element is " + r.width + " pixel wide.");
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Start() as void:
		r as Rect = guiTexture.GetScreenRect()
		Debug.Log((('This gui element is ' + r.width) + ' pixel wide.'))