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.TextField

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 TextField(position: Rect, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, string text, GUIStyle style = EditorStyles.textField);
public static function TextField(position: Rect, label: string, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, string label, string text, GUIStyle style = EditorStyles.textField);
public static function TextField(position: Rect, label: GUIContent, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, GUIContent label, string text, GUIStyle style = EditorStyles.textField);
public static function TextField(position: Rect, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, string text, GUIStyle style = EditorStyles.textField);
public static function TextField(position: Rect, label: string, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, string label, string text, GUIStyle style = EditorStyles.textField);
public static function TextField(position: Rect, label: GUIContent, text: string, style: GUIStyle = EditorStyles.textField): string;
public static string TextField(Rect position, GUIContent label, string text, GUIStyle style = EditorStyles.textField);

Parámetros

position Rectangle on the screen to use for the text field.
label Optional label to display in front of the text field.
text The text to edit.
style Optional GUIStyle.

Valor de retorno

string The text entered by the user.

Descripción

Make a text field.

This works just like GUI.TextField, but correctly responds to select all, copy, paste etc. in the editor, and it can have an optional label in front.


Text field in an Editor Window.

	// Changes the name of the selected Objects to the one typed in the text field
	
	class EditorGUITextField extends EditorWindow {
	
		var objNames : String = "";
	
		@MenuItem("Examples/Bulk Name change")
		static function Init() {
			var window = GetWindow(EditorGUITextField);
			window.Show();
		}
		
		function OnGUI() {
			EditorGUI.DropShadowLabel(Rect(0, 0, position.width, 20), 
			"Select the objects to rename.");
			objNames = EditorGUI.TextField(Rect(10,25,position.width - 20, 20),
						"New Names:", 
						objNames);
			if(Selection.activeTransform)
				if(GUI.Button(Rect(0, 50, position.width, 30), "Bulk rename!"))
					for(var t : Transform in Selection.transforms)
						t.name = objNames;
		}
		function OnInspectorUpdate() {
			Repaint();
		}
	}