当前位置:   article > 正文

unity [yield return null] and [yield return WaitForSecond]_yield return new waitforseconds(2f);

yield return new waitforseconds(2f);

unity 协程

返回值IEnumerator
代码来自[company]

	IEnumerator _wait_one_frame_(System.Action onEntered, bool playEffects , bool blockScreen) {
		yield return null;
		//yield return new WaitForSeconds(2f);
		//yield return new WaitForEndOfFrame();

		InternalEnterScreen(onEntered, playEffects, blockScreen);	
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

yield return null;
代表下一帧执行,调用顺序在Update后,LateUpdate前

yield return WaitForEndOfFrame();
WaitForEndOfFrame会在一帧结束后调用,且在LateUpdate之后调用。

yield return new WaitForSeconds(2f);
代表2秒后执行

原文链接

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/95662
推荐阅读
相关标签
  

闽ICP备14008679号