Click or drag to resize

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+
Syntax
C#
public static Coroutine CallOnTimeout(
	MonoBehaviour mono,
	float seconds,
	Action action
)
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.
seconds
Type: SystemSingle
The timeout in seconds.
action
Type: SystemAction
The delegate to execute.

Return Value

Type: Coroutine
The coroutine instance.
Remarks
The delegate will be called when the timeout is expired.
Examples
class AsyncCall_CallOnTimeout : MonoBehaviour {
  void Update() {
    AsyncCall.CallOnTimeout(this, 5.0f, () => Debug.Log("5 seconds has elapsed"));
  }
}
See Also