码迷,mamicode.com
首页 > 其他好文 > 详细

Unity3d---> IEnumerator

时间:2014-08-27 21:51:08      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   os   io   strong   for   ar   art   

Unity3d---> IEnumerator

[csharp] view plaincopy
 
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. public class Test : MonoBehaviour   
  5. {  
  6.     IEnumerator Start ()   
  7.     {  
  8.         yield return StartCoroutine(login());  
  9.           
  10.         Debug.Log("CCCCCCCCCCCCC");  
  11.           
  12.         Destroy(this.gameObject);  
  13.     }  
  14.       
  15.     IEnumerator login ()   
  16.     {  
  17.         Debug.Log("AAAAAAAAAAAAAAAAA");  
  18.           
  19.         yield return new WaitForSeconds(0);  
  20.           
  21.         Debug.Log("BBBBBBBBBBBBBBBBB");  
  22.     }  
  23. }  

------print--------

AAAAAAAAAAA

BBBBBBBBBBB

CCCCCCCCCCC

--------------------

 

[csharp] view plaincopy
 
  1. using UnityEngine;  
  2. using System.Collections;  
  3.   
  4. public class Test : MonoBehaviour   
  5. {  
  6.     void Start ()   
  7.     {  
  8.         StartCoroutine(login());  
  9.           
  10.         Debug.Log("CCCCCCCCCCCCC");  
  11.           
  12.         Destroy(this.gameObject);  
  13.     }  
  14.       
  15.     IEnumerator login ()   
  16.     {  
  17.         Debug.Log("AAAAAAAAAAAAAAAAA");  
  18.           
  19.         yield return new WaitForSeconds(0);  
  20.           
  21.         Debug.Log("BBBBBBBBBBBBBBBBB");  
  22.     }  
  23. }  


 

 

------print--------

AAAAAAAAAAA

CCCCCCCCCCC

Unity3d---> IEnumerator

标签:des   blog   http   os   io   strong   for   ar   art   

原文地址:http://www.cnblogs.com/wonderKK/p/3940270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!