Version: 2022.3
言語: 日本語
public TextAnchor anchor ;

説明

テキストのどの箇所がトランスフォームの位置になるか。

using UnityEngine;

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