Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

GUILayoutUtility.GetRect

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function GetRect(content: GUIContent, style: GUIStyle): Rect;
public static Rect GetRect(GUIContent content, GUIStyle style);
public static function GetRect(content: GUIContent, style: GUIStyle, params options: GUILayoutOption[]): Rect;
public static Rect GetRect(GUIContent content, GUIStyle style, params GUILayoutOption[] options);

Parámetros

content The content to make room for displaying.
style The GUIStyle to layout for.
options An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Valor de retorno

Rect A rectangle that is large enough to contain content when rendered in style.

Descripción

Reserve layout space for a rectangle for displaying some contents with a specific style.

	// Shows the button rect properties in a label when the mouse is over it
	var buttonText : GUIContent = new GUIContent("some button"); 
	var buttonStyle : GUIStyle = GUIStyle.none; 
	
	function OnGUI() { 
		var rt : Rect = GUILayoutUtility.GetRect(buttonText, buttonStyle); 
		if (rt.Contains(Event.current.mousePosition)) { 
			GUI.Label(Rect(0,20,200,70), "PosX: " + rt.x + "\nPosY: " + rt.y + 
				  "\nWidth: " + rt.width + "\nHeight: " + rt.height);
		} 
		GUI.Button(rt, buttonText, buttonStyle); 
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GUIContent buttonText = new GUIContent("some button"); public GUIStyle buttonStyle = GUIStyle.none; void OnGUI() { Rect rt = GUILayoutUtility.GetRect(buttonText, buttonStyle); if (rt.Contains(Event.current.mousePosition)) GUI.Label(new Rect(0, 20, 200, 70), "PosX: " + rt.x + "\nPosY: " + rt.y + "\nWidth: " + rt.width + "\nHeight: " + rt.height); GUI.Button(rt, buttonText, buttonStyle); } }

public static function GetRect(width: float, height: float): Rect;
public static Rect GetRect(float width, float height);
public static function GetRect(width: float, height: float, style: GUIStyle): Rect;
public static Rect GetRect(float width, float height, GUIStyle style);
public static function GetRect(width: float, height: float, params options: GUILayoutOption[]): Rect;
public static Rect GetRect(float width, float height, params GUILayoutOption[] options);
public static function GetRect(width: float, height: float, style: GUIStyle, params options: GUILayoutOption[]): Rect;
public static Rect GetRect(float width, float height, GUIStyle style, params GUILayoutOption[] options);

Parámetros

width The width of the area you want.
height The height of the area you want.
style An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes & its margin value will be used for spacing.
options An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Valor de retorno

Rect The rectanlge to put your control in.

Descripción

Reserve layout space for a rectangle with a fixed content area.


public static function GetRect(minWidth: float, maxWidth: float, minHeight: float, maxHeight: float): Rect;
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight);
public static function GetRect(minWidth: float, maxWidth: float, minHeight: float, maxHeight: float, style: GUIStyle): Rect;
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, GUIStyle style);
public static function GetRect(minWidth: float, maxWidth: float, minHeight: float, maxHeight: float, params options: GUILayoutOption[]): Rect;
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, params GUILayoutOption[] options);
public static function GetRect(minWidth: float, maxWidth: float, minHeight: float, maxHeight: float, style: GUIStyle, params options: GUILayoutOption[]): Rect;
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, GUIStyle style, params GUILayoutOption[] options);

Parámetros

minWidth The minimum width of the area passed back.
maxWidth The maximum width of the area passed back.
minHeight The minimum width of the area passed back.
maxHeight The maximum width of the area passed back.
style An optional style. If specified, the style's padding value will be added to the sizes requested & the style's margin values will be used for spacing.
options An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Valor de retorno

Rect A rectangle with size between minWidth & maxWidth on both axes.

Descripción

Reserve layout space for a flexible rect.

The rectangle's size will be between the min & max values.