unity curvedText
![[유니티] Curved Text](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbnJq0U%2FbtrKJ3E1eWY%2FAAAAAAAAAAAAAAAAAAAAAJcnCfr6G1GEfEpfBh0zg_AD862Cm95DfvFUy5iPPO2_%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DsWK%252F8YuPMIQFebHeA69f7OGR7Og%253D)
[유니티] Curved Text
using UnityEngine; using TMPro; [ExecuteInEditMode] public class CurvedText : MonoBehaviour { private TextMeshProUGUI _textComponent; [SerializeField] private AnimationCurve vertexCurve = new(new Keyframe (0.0f, 0.1f), new Keyframe (0.5f, 0.0f), new Keyframe (1.0f, 0.1f)); [SerializeField] private float curveScale = 100.0f; private void Awake () { _textComponent = gameObject.GetComponent (); } p..