lineSpacing
How much space will be in-between lines of text.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.TextRenderingModule
public float lineSpacing { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().lineSpacing = 10; }}