UNITY实现FLASH中的setTimeout时间:2023-03-09 18:56:40 setTimeout是一个很方便的DELAY处理方法 if (this.startUpDelay > 0){ StartCoroutine(DelayedStart());} private IEnumerator DelayedStart(){ yield return new WaitForSeconds(this.startUpDelay); //Activate();}