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.

GUI.Box

static function Box(position: Rect, text: string): void;
static function Box(position: Rect, image: Texture): void;
static function Box(position: Rect, content: GUIContent): void;
static function Box(position: Rect, text: string, style: GUIStyle): void;
static function Box(position: Rect, image: Texture, style: GUIStyle): void;
static function Box(position: Rect, content: GUIContent, style: GUIStyle): void;

Parameters

positionRectangle on the screen to use for the box.
textText to display on the box.
image Texture to display on the box.
contentText, image and tooltip for this box.
styleThe style to use. If left out, the box style from the current GUISkin is used.

Description

Make a graphical box.

	// Draws a box of the size of the screen.
	function OnGUI() {
		 GUI.Box(Rect(0,0,Screen.width,Screen.height),"This is a title");
	}