Version: 2022.3
LanguageEnglish
  • C#

SceneLoadingStatus

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

The loading status of a ContentSceneFile. This is accessed by ContentSceneFile.Status.

Properties

InProgressThe scene load is in progress.
WaitingForIntegrateThe asynchronous part of the scene loading is complete. You can now safely call ContentSceneFile.IntegrateAtEndOfFrame when you are ready to activate the scene.
WillIntegrateNextFrameThe scene will integrate at the end of the current frame.
CompleteThe scene has been loaded and integrated successfully.
FailedA failure occured in the scene loading process. See log for details. Be sure to still call ContentSceneFile.UnloadAtEndOfFrame to release internal resources.