KEngine.KAsync.WaitForSeconds C# (CSharp) Method

WaitForSeconds() public method

等待秒数
public WaitForSeconds ( float time ) : KAsync
time float
return KAsync
        public KAsync WaitForSeconds(float time)
        {
            WaitNext((next) => { KAsyncManager.Instance.StartCoroutine(_CoWaitForSeconds(time, next)); });
            return this;
        }