GQ_Communicate/GQ_VR/Assets/script/UI/SetTextWithEllipsis/TestSetTextWithEllipsis.cs

27 lines
558 B
C#

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);
}
}
}