EditorGUI.TextFieldstatic function TextField (position : Rect, text : String, style : GUIStyle = EditorStyles.textField) : Stringstatic function TextField (position : Rect, label : String, text : String, style : GUIStyle = EditorStyles.textField) : Stringstatic function TextField (position : Rect, label : GUIContent, text : String, style : GUIStyle = EditorStyles.textField) : StringParameters
ReturnsString - The text entered by the user. DescriptionMake 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.
// Changes the name of the selected Objects to the one typed in the text field
|

