Version: 2018.2
public float offsetZ ;

説明

テキストが描画中に transform.position.z からどのくらいのオフセットをとるか。

using UnityEngine;

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