textField
Style used by default for GUI.TextField controls.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public GUIStyle textField { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Modifies only the textField style of the current GUISkin GUIStyle style; string str = "A string..."; void OnGUI() { GUI.skin.textField = style; str = GUILayout.TextField(str); }}