Skip to content

Instantly share code, notes, and snippets.

@gmodecorp
Created December 22, 2014 13:09
Show Gist options
  • Save gmodecorp/c2ae1b335ed8b11bf26c to your computer and use it in GitHub Desktop.
Save gmodecorp/c2ae1b335ed8b11bf26c to your computer and use it in GitHub Desktop.
IEnumerator A()
{
//コルーチンの実行権がBに移る
yield return StartCoroutine(B());
}
IEnumerator B()
{
// 何らかの処理
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment