I have been a fan of coroutines until now. void Start() { StartCoroutine(PostStart()); } IEnumerator PostStart() { // 1.5秒待つ yield return new WaitForSeconds(1.5f); // なにかする } In the midst of that, I ...