📅  最后修改于: 2022-03-11 14:49:16.585000             🧑  作者: Mango
IEnumerator MyCoroutine()
{
Debug.Log("This works !");
yield break; // Line to stop your coroutine.
Debug.Log("This doesn't show in the console because the coroutine is already finished !!!!");
}