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.

EditorGUI.GetPropertyHeight

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 GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);
public static function GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);
public static function GetPropertyHeight(property: SerializedProperty, label: GUIContent = null, includeChildren: bool = true): float;
public static float GetPropertyHeight(SerializedProperty property, GUIContent label = null, bool includeChildren = true);

Parámetros

property Height of the property area.
label Descriptive text or image.
includeChildren Should the returned height include the height of child properties?

Descripción

Get the height needed for a PropertyField control.

The height is based on the type of the SerializedProperty, and inclues the height of all expanded children if the includeChildren parameter is set to true, which is the default. If the property has a custom PropertyDrawer, the function will return the height returned by that drawer. The includeChildren parameter is ignored in that case, as PropertyDrawers always include children.