Version: 2023.2
言語: 日本語

ContentFile

struct in Unity.Loading

マニュアルに切り替える

説明

This struct acts like a handle for accessing a file loaded by ContentLoadInterface.LoadContentFileAsync. You can use it to access the status and results of the load operation.

Static 変数

GlobalTableDependencyThis ContentFile can be passed as a dependency to ContentLoadInterface.LoadContentFileAsync or ContentLoadInterface.LoadSceneAsync to indicate that the external file dependencies should be resolved through the global PersistentManager table. For example, this could be used when the ContentFile references a file loaded through the PersistentManager such as "unity default resources".

変数

IsValidReturns true if the ContentFile handle is valid.
LoadingStatusThe loading status of the ContentFile.

Public 関数

GetObjectUsed to access objects within the ContentFile by local file identifier.
GetObjectsThis function can be used to access all the Objects loaded in the ContentFile.
UnloadAsyncBegin an asynchronous unload of the ContentFile.
WaitForCompletionBlocks on the main thread until the load operation completes. This function can be slow and so should be used carefully to avoid frame rate stuttering.