WaitForFixedUpdate 等待固定更新

Inherits from YieldInstruction

Waits until next fixed frame rate update function. See Also: FixedUpdate.

等待直到下一个固定帧速率更新函数。参见:FixedUpdate

WaitForFixedUpdate can only be used with a yield statement in coroutines.

在coroutine中WaitForFixedUpdate只能用于yield声明。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public IEnumerator Awake() {
		yield return new WaitForFixedUpdate();
	}
}
yield new WaitForFixedUpdate ();
最后修改:2010年12月25日 Saturday 16:16

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。