使用协程延后时间
StartCoroutine("startTrack");
IEnumerator startTrack() {
Debug.Log("START TRACK");
yield return new WaitForSeconds(5.0f);
}
StartCoroutine("startTrack");
IEnumerator startTrack() {
Debug.Log("START TRACK");
yield return new WaitForSeconds(5.0f);
}