tabSize
How much space will be inserted for a tab '\t' character. This is a multiplum of the 'spacebar' character offset.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.TextRenderingModule
public float tabSize { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().tabSize = 5; }}