Example 1: unity coroutine void Start() { StartCoroutine("func"); // Start coroutine named "func" } IEnumerator func() { Debug.Log("Hello"); yield return ...
確定! 回上一頁