Version: 2022.1
언어: 한국어
public TextAlignment alignment ;

설명

How lines of text are aligned (Left, Right, Center).

using UnityEngine;

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