Version: 2017.1
public float offsetZ ;

描述

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

using UnityEngine;
using System.Collections;

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