1、定时循环
void Start ()
{
StartCoroutine("DoSomething");
}
void DoSomething ()
{
while (true)
{
//需要重复执行的代码就放于在此处
print("DoSomething Loop");
//设置间隔时间为10秒
yield WaitForSeconds (10);
}
}
1、定时循环
void Start ()
{
StartCoroutine("DoSomething");
}
void DoSomething ()
{
while (true)
{
//需要重复执行的代码就放于在此处
print("DoSomething Loop");
//设置间隔时间为10秒
yield WaitForSeconds (10);
}
}