public float lineSpacing ;

설명

How much space will be in-between lines of text.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { GetComponent<TextMesh>().lineSpacing = 10; } }