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.

EditorGUILayout.PrefixLabel

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 PrefixLabel(label: string, followingStyle: GUIStyle = "Button"): void;
public static void PrefixLabel(string label, GUIStyle followingStyle = "Button");
public static function PrefixLabel(label: GUIContent, followingStyle: GUIStyle = "Button"): void;
public static void PrefixLabel(GUIContent label, GUIStyle followingStyle = "Button");
public static function PrefixLabel(label: string, followingStyle: GUIStyle = "Button"): void;
public static void PrefixLabel(string label, GUIStyle followingStyle = "Button");
public static function PrefixLabel(label: string, followingStyle: GUIStyle, labelStyle: GUIStyle): void;
public static void PrefixLabel(string label, GUIStyle followingStyle, GUIStyle labelStyle);
public static function PrefixLabel(label: GUIContent, followingStyle: GUIStyle = "Button"): void;
public static void PrefixLabel(GUIContent label, GUIStyle followingStyle = "Button");
public static function PrefixLabel(label: GUIContent, followingStyle: GUIStyle, labelStyle: GUIStyle): void;
public static void PrefixLabel(GUIContent label, GUIStyle followingStyle, GUIStyle labelStyle);

Parámetros

label Label to show in front of the control.

Descripción

Make a label in front of some control.


Simple window that shows the prefix label.

Note that most editor controls already have built-in optional labels that can be specified as one of the parameters. PrefixLabel can be used when there is no such built-in label available, or when you're creating your own editor control from scratch.

PrefixLabel also ensures that when the label is clicked, the linked control will get keyboard focus (if the control supports keyboard focus). The label is automatically linked to the following control coming after it.

	class SimplePrefixLabelUsage extends EditorWindow {

@MenuItem("Examples/PrefixLabel Usage") static function Init() { var window = GetWindow(SimplePrefixLabelUsage); window.Show(); }

function OnGUI() { var ammo : int = 0; EditorGUILayout.BeginHorizontal(); EditorGUILayout.PrefixLabel("Ammo"); target = EditorGUILayout.IntField(ammo); EditorGUILayout.EndHorizontal(); } }