public float lineSpacing;
Description 描述
How much space will be in-between lines of text.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { GetComponent<TextMesh>().lineSpacing = 10; } }
How much space will be in-between lines of text.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { GetComponent<TextMesh>().lineSpacing = 10; } }