我想显示我的文本 3 秒钟,所以我做了以下操作,但它只是闪烁并消失。
void Start () {
Invoke("ShowInfoText", 2f);
}
void ShowInfoText()
{
infoText.gameObject.SetActive(true);
infoText.text = "Welocme!";
Invoke("DisableInfoText", 5f);
}
void DisableInfoText()
{
infoText.gameObject.SetActive(false);
}
如何让文字停留3秒?
哆啦的时光机
相关分类