AsyncCallCallOnFixedUpdate Method |
Namespace: KSPDev.ProcessingUtils
public static Coroutine CallOnFixedUpdate( MonoBehaviour mono, Action action, int skipFrames = 0 )
class AsyncCall_FixedFrame : MonoBehaviour { void Update() { // Call the method at the next fixed frame update. AsyncCall.CallOnFixedUpdate(this, () => Debug.Log("Async call!")); // Wait for one fixed frame update and then call. AsyncCall.CallOnFixedUpdate(this, () => Debug.Log("Next frame async call!"), skipFrames: 1); } }