using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class TestSetTextWithEllipsis : MonoBehaviour { public Text text; string strValue = string.Empty; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if (Input.GetKeyDown(KeyCode.A)) { strValue += " You"; Debug.Log("strValue " + strValue); text.SetTextWithEllipsis(strValue); } } }