Unity
[Unity] 텍스트 길이에 맞춰 UI 사이즈 조절하는법
기억해조
2023. 9. 15. 11:04
private void SettingTextWidth(RectTransform rectTrf,TextMeshProUGUI tmpText, string textValue)
{
tmpText.text = textValue;
Vector2 rectSize = rectTrf.sizeDelta;
rectSize.x = tmpText.preferredWidth;
rectTrf.sizeDelta = rectSize;
}
preferredWidth
를 사용하면 길이를 알 수 있다!..
출처
https://polarbearworld.tistory.com/167