摘要: StartCoroutine("StandTime"); IEnumerator StandTime() { yield return new WaitForSecondsRealtime(2); //等待2秒后执行下面内容 GetComponent<Move>().enabled = true; 阅读全文