AsyncCallCallOnTimeout Method |
Delays execution of the delegate for the specified amount of time.
Namespace:
KSPDev.ProcessingUtils
Assembly:
KSPDev_Utils.1.2 (in KSPDev_Utils.1.2.dll) Version: 1.2 for KSP v1.6+
Syntaxpublic static Coroutine CallOnTimeout(
MonoBehaviour mono,
float seconds,
Action action
)
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.
- seconds
- Type: SystemSingle
The timeout in seconds. - action
- Type: SystemAction
The delegate to execute.
Return Value
Type:
CoroutineThe coroutine instance.
RemarksThe delegate will be called when the timeout is expired.
Examplesclass AsyncCall_CallOnTimeout : MonoBehaviour {
void Update() {
AsyncCall.CallOnTimeout(this, 5.0f, () => Debug.Log("5 seconds has elapsed"));
}
}
See Also