EditorGUILayout.TextFieldstatic function TextField (text : String, params options : GUILayoutOption[]) : Stringstatic function TextField (text : String, style : GUIStyle, params options : GUILayoutOption[]) : Stringstatic function TextField (label : String, text : String, params options : GUILayoutOption[]) : Stringstatic function TextField (label : String, text : String, style : GUIStyle, params options : GUILayoutOption[]) : Stringstatic function TextField (label : GUIContent, text : String, params options : GUILayoutOption[]) : Stringstatic function TextField (label : GUIContent, text : String, style : GUIStyle, params options : GUILayoutOption[]) : StringParameters
ReturnsString - The text entered by the user. DescriptionMake a text field. This works just like GUILayout.TextField, but correctly responds to select all, copy, paste etc. in the editor, and it can have an optional label in front.
// Automatically change the name of the selected object via a text field
|

