Cancel(int)
Cancels a runnning progress indicator, and invokes the cancel callback for the associated task.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor
public static bool Cancel(int id)
Parameters
The progress indicator's unique ID.
Returns
Type | Description |
|---|---|
| bool | True if the associated task is cancelled, false if it cannot be cancelled. |
Remarks
You can only call this method if a cancel callback has been registered for the specified id.
Additional Resources: Progress.RegisterCancelCallback, Progress.UnregisterCancelCallback.