Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ContentSceneFile

The handle returned from ContentLoadInterface.LoadSceneAsync. You can use this handle to access the status and results of the load operation.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Struct
  • Namespace: Unity.Loading
  • Assembly: UnityEngine.ContentLoadModule
public struct ContentSceneFile

Properties

Property

Description

IsValidReturns true if the ContentSceneFile handle is valid. A handle becomes invalid after the file is unloaded.
SceneThe Scene object being loaded. This is accessible both before and after the load operation completes.
StatusThe loading status of the scene.

Methods

Method

Description

IntegrateAtEndOfFrameCalling this will cause the scene to integrate at the end of the frame.
UnloadAtEndOfFrameWill trigger the scene to unload at the end of the frame.
WaitForLoadCompletionBlocks 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.