文本在绘制时应从 transform.position.z 偏移多远。
using UnityEngine;public class Example : MonoBehaviour { void Start() { GetComponent<TextMesh>().offsetZ = 5; } }