协程——Coroutine

作者:追风剑情 发布于:2016-1-26 14:31 分类:Unity3d

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class YieldTest : MonoBehaviour {
  5.  
  6. public void Awake()
  7. {
  8. print("Begin Awake");
  9. //StartCoroutine("FunCoroutine1");
  10. StartCoroutine(FunCoroutine1());
  11. print("End Awake");
  12. }
  13. public IEnumerator FunCoroutine1()
  14. {
  15. print(Time.time);
  16. yield return new WaitForSeconds(5); //等待5秒
  17. print("WaitForSeconds: " + Time.time);
  18. yield return new WaitForFixedUpdate(); //等待FixedUpdate()执行完成
  19. print("WaitForFixedUpdate: "+Time.time);
  20. yield return new WaitForEndOfFrame();//等待当前帧执行完成
  21. print("WaitForEndOfFrame: " + Time.time);
  22. yield return null;
  23. print(Time.time);
  24. }
  25. }

运行效果

run.png

注意:如果协程还未运行完,对象的active被设置成false,会导致报错:Coroutine couldn't be started because the the game object 'xxx' is inactive!

 

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号