我是靠谱客的博主 殷勤大雁,这篇文章主要介绍unity实现物体延时出现,现在分享给大家,希望可以做个参考。

本文实例为大家分享了unity实现物体延时出现的具体代码,供大家参考,具体内容如下

新建一个cube和plane,隐藏cube,脚本挂在plane上。

1. update计时器实现

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections; using System.Collections.Generic; using UnityEngine; //一个隐藏的物体等待t秒后显示,updata计时器实现 public class activeShow : MonoBehaviour { public GameObject cube; public int t; private float m_timer=0; // Use this for initialization void Start () { } // Update is called once per frame void Update () { m_timer+=Time.deltaTime; if(m_timer>5){ cube.SetActive(true); m_timer=0; } } }

2. invoke实现

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.Collections; using System.Collections.Generic; using UnityEngine; 一个隐藏的物体等待t秒后显示,Invoke实现 public class ShowT : MonoBehaviour { public GameObject cube; public int t;//等待时间 // Use this for initialization void Start () { Invoke("ActiveShow", t); } // Update is called once per frame void Update () { } public void ActiveShow(){ cube.SetActive(true); } }

3. invokeRepeating实现(这个是用来凑数的)

复制代码
1
2
3
void Start () { InvokeRepeating("ActiveShow", t,1000); }

4. 协程实现

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System.Collections; using System.Collections.Generic; using UnityEngine; //一个隐藏的物体等待t秒后显示,协程实现 public class HideInSeconds : MonoBehaviour { public GameObject cube; IEnumerator ie; // Use this for initialization void Start () { ie=waitFourSeconds(); StartCoroutine(ie); } // Update is called once per frame void Update () { } IEnumerator waitFourSeconds(){ yield return new WaitForSeconds(4.0f); cube.SetActive(true); } }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是殷勤大雁最近收集整理的关于unity实现物体延时出现的全部内容,更多相关unity实现物体延时出现内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(129)

评论列表共有 0 条评论

立即
投稿
返回
顶部