private static IEnumerator WaitForEndOfFrame_Async(WaitForEndOfFrameRequest rRequest) { yield return(new WaitForEndOfFrame()); rRequest.SetResult(rRequest); }
public static IAsyncOperation <WaitForEndOfFrameRequest> WaitForEndOfFrame() { var rRequest = new WaitForEndOfFrameRequest(); return(rRequest.Start(WaitForEndOfFrame_Async(rRequest))); }