Skip to content

Instantly share code, notes, and snippets.

@gmodecorp
Created December 22, 2014 13:14
Show Gist options
  • Save gmodecorp/64756ed8dfb0150296b6 to your computer and use it in GitHub Desktop.
Save gmodecorp/64756ed8dfb0150296b6 to your computer and use it in GitHub Desktop.
// 以前にStartCorotuineで生成した、既に実行が開始しているコルーチン
Coroutine anotherCoroutine;
IEnumerator A()
{
// コルーチンの実行権がanotherCoroutineに移る
yield return anotherCoroutine;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment