WaitForCompletion(int)
Blocks on the main thread until the unload operation completes. This function can be slow and so should be used carefully to avoid frame rate stuttering.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: Unity.Loading
- Assembly: UnityEngine.ContentLoadModule
public bool WaitForCompletion(int timeoutMs)
Parameters
The maximum time in milliseconds this function will wait before returning. Pass 0 to block indefinitely until completion.
Returns
Type | Description |
|---|---|
| bool | Returns false if the timeout was reached before ContentFile completed loading. |