wordWrap
Should the text be wordwrapped?
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public bool wordWrap { get; set; }
Remarks
This will cause any text contrained to be wordwrapped to fit within the width of a control.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void OnGUI() { GUI.skin.button.wordWrap = true; }}