Version: 2020.1
public float offsetZ ;

描述

文本在绘制时应从 transform.position.z 偏移多远。

using UnityEngine;

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