为了账号安全,请及时绑定邮箱和手机立即绑定

使文本网格中的文本停留几秒钟

使文本网格中的文本停留几秒钟

C#
海绵宝宝撒 2023-07-22 18:27:50
我想显示我的文本 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秒?
查看完整描述

1 回答

?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

你可以试试InvokeRepeating。


public void InvokeRepeating(string methodName, float time, float RepeatRate );


您还可以使用协程:


void Start ()

{

    StartCoroutine(DoTextShow());

}


IEnumerator DoTextShow()

{

    infoText.gameObject.SetActive(false);

    yield return new WaitForSeconds(2f);

    infoText.gameObject.SetActive(true);

    yield return new WaitForSeconds(3f);

    infoText.gameObject.SetActive(false);

}


查看完整回答
反对 回复 2023-07-22
  • 1 回答
  • 0 关注
  • 113 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信