時間経過によるコルーチン。
void Start()
{
StartCoroutine(TestCoroutine("test"));
}
IEnumerator TestCoroutine(string _test_str)
{
Debug.Log("testCoroutineにアクセス"+ _test_str);
yield return new WaitForSeconds(1f);
Debug.Log("1秒経過しました");
yield return new WaitForSeconds(3f);
Debug.Log("次に3秒経過しました");
}