Click or drag to resize

AsyncCallCallOnFixedUpdate Method

Delays execution of the delegate till the next fixed update.

Namespace:  KSPDev.ProcessingUtils
Assembly:  KSPDev_Utils.1.2 (in KSPDev_Utils.1.2.dll) Version: 1.2 for KSP v1.6+
Syntax
C#
public static Coroutine CallOnFixedUpdate(
	MonoBehaviour mono,
	Action action,
	int skipFrames = 0
)
Request Example View Source

Parameters

mono
Type: UnityEngineMonoBehaviour
The Unity object to run the coroutine on. If this object dies, then the async call will not be invoked.
action
Type: SystemAction
The delegate to execute.
skipFrames (Optional)
Type: SystemInt32
The number of fixed frames to skip.

Return Value

Type: Coroutine
The coroutine instance.
Remarks
The delegate will be called during the following fixed (physics) update.
Examples
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);
  }
}
See Also