Unity 开发常见问题整理 (一)yield return 不执行的缘由

void Start() { StartCoroutine(Loop()); } IEnumerator Loop() { yield return new WaitForSeconds(WaiteTime); Remove(); Debug.Log("Remove"); } 参考案例 缘
相关文章
相关标签/搜索