AsyncCallCallOnEndOfFrame Method |
Delays execution of the delegate till the end of the frame.
Namespace:
KSPDev.ProcessingUtils
Assembly:
KSPDev_Utils.1.2 (in KSPDev_Utils.1.2.dll) Version: 1.2 for KSP v1.6+
Syntaxpublic static Coroutine CallOnEndOfFrame(
MonoBehaviour mono,
Action action,
int skipFrames = 0
)
Request Example
View SourceParameters
- 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 frames to skip.
Return Value
Type:
CoroutineThe coroutine instance.
Remarks
The delegate will trigger at the end of the selected frame update.
If skipFrames is set to 0, then the delegate will be
called at the end of the current frame. Calling this method in the "end of frame" callback
will not schedule the callback on the next frame, the execution will just be placed at
the end of the current frame execution queue. This behavior can be used to execute a logic
that depends on some other delayed logic. In order to schedule the execution on the frame
different from the current, specify the skipFrames parameter.
Examplesclass AsyncCall_EndOfFrame : MonoBehaviour {
void Update() {
AsyncCall.CallOnEndOfFrame(this, () => Debug.Log("Same frame async call!"));
AsyncCall.CallOnEndOfFrame(
this,
() => AsyncCall.CallOnEndOfFrame(this, () => Debug.Log("Same frame, end of queue call!")));
AsyncCall.CallOnEndOfFrame(this, () => Debug.Log("Next frame async call!"), skipFrames: 1);
}
}
See Also