金口难开没看看没开门,吗,吗,吗,吗,吗,m
金口难开没看看没开门,吗,吗,吗,吗,吗,m
不会反复DIAOYON
①两个迭代器(IEnumerator)交叉调用,完成一个生命周期。
/// <summary>
/// 生成怪物
/// </summary>
/// <returns></returns>
IEnumerator AliveTimer()
{
while (true) {
yield return new WaitForSeconds(Random.Range(1, 2));
Debug.Log("生成");
ActiceMoster();
while (true) {
Debug.Log("检测");
if (activeMoster == null) {
break;
}
aliveTime -= Time.deltaTime;
if (aliveTime < 0) {
Debug.Log("死亡");
DeActiceMoster();
}
yield return null;
}
}
}