Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


anchor

Which point of the text shares the position of the Transform.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.TextRenderingModule
public TextAnchor anchor { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().anchor = TextAnchor.MiddleCenter; }}