コルーチンの中でコルーチンを待つ場合、今まで
yield return StartCoroutine(otherCoroutine(var));
とやっていたのですが、
yield return otherCoroutine(var);
でも大丈夫みたいです。知りませんでした!
Go to list of users who liked
More than 3 years have passed since last update.
コルーチンの中でコルーチンを待つ場合、今まで
yield return StartCoroutine(otherCoroutine(var));
とやっていたのですが、
yield return otherCoroutine(var);
でも大丈夫みたいです。知りませんでした!
Register as a new user and use Qiita more conveniently
Go to list of users who liked