offsetZ
How far should the text be offset from the transform.position.z when drawing.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.TextRenderingModule
public float offsetZ { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().offsetZ = 5; }}