Version: 2017.1
public float lineSpacing ;

설명

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

using UnityEngine;
using System.Collections;

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