Enum SceneSystem.SceneStreamingState
Contains the streaming state of a loading scene.
Namespace: Unity.Scenes
Syntax
public enum SceneStreamingState
Fields
| Name | Description | Value |
|---|---|---|
| Unloaded | The scene is not loading and is not expected to load. It could be that it has just been fully unloaded. |
0 |
| LoadedSectionEntities | The scene and section entities are loaded, but the content for the sections is not loaded or expected to load. |
1 |
| Loading | The scene still loading. |
2 |
| LoadedSuccessfully | The scene and all the requested sections loaded successfully. |
3 |
| Unloading | The scene is currently unloading. |
4 |
| FailedLoadingSceneHeader | The scene failed to load the scene header. |
5 |
| LoadedWithSectionErrors | The scene finished loading, but at least one the sections failed to load successfully. |
6 |