Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

timeoutMs

The maximum time in milliseconds this function will wait before returning. Pass 0 to block indefinitely until completion.

Returns

Type

Description

boolReturns false if the timeout was reached before ContentFile completed loading.