Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


alignment

How lines of text are aligned (Left, Right, Center).
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.TextRenderingModule
public TextAlignment alignment { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<TextMesh>().alignment = TextAlignment.Left; }}