纳金网
标题: 关于Invoke、InvokeRepeating、StartCoroutine调用规则释义 [打印本页]
作者: 雅雅 时间: 2016-4-28 01:59
标题: 关于Invoke、InvokeRepeating、StartCoroutine调用规则释义
在本场景:
Invoke:在物体被隐藏时,可调用;脚本在禁止时,可调用。
InvokeRepeating:在物体被隐藏时,可调用;脚本在禁止时,可调用。
StartCoroutine:在物体被隐藏时,不可调用;脚本在禁止时,可调用。
切换场景后:不管该物体是否设置为DontDestroyOnLoad
Invoke:可调用。
InvokeRepeating:可调用。慎用,可用于客户端心跳包发送。
StartCoroutine:不可调用。
以下为测试代码:
- void Start()
- {
- Invoke("Test",1);
- InvokeRepeating("Test3", 1,1);
- StartCoroutine(Test2());
- gameObject.SetActive(false);
- //enabled = false;
- }
- void Test() {
- Debug.Log("Test");
- }
- IEnumerator Test2() {
- yield return new WaitForSeconds(1);
- Debug.Log("Test2");
- }
- void Test3() {
- Debug.Log("Test3");
- }
复制代码
欢迎光临 纳金网 (http://old.narkii.com/club/) |
Powered by Discuz! X2.5 |