KEngine.KAsync.WaitForFrames C# (CSharp) Method

WaitForFrames() public method

等待一定帧数
public WaitForFrames ( int frameCount ) : KAsync
frameCount int
return KAsync
        public KAsync WaitForFrames(int frameCount)
        {
            WaitNext((next) => { KAsyncManager.Instance.StartCoroutine(_WaitForFrames(frameCount, next)); });
            return this;
        }