本文共 194 字,大约阅读时间需要 1 分钟。
setTimeout是一个很方便的DELAY处理方法
if (this.startUpDelay > 0)
{ StartCoroutine(DelayedStart());}
private IEnumerator DelayedStart()
{ yield return new WaitForSeconds(this.startUpDelay); //Activate();}转载地址:http://lcrlo.baihongyu.com/