Enum SceneSystem.SectionStreamingState
Contains the streaming state of a loading section.
Namespace: Unity.Scenes
Syntax
public enum SectionStreamingState
Fields
| Name | Description | Value |
|---|---|---|
| Unloaded | The section is not loading and it's not expected to load. It could be that it has just been fully unloaded. |
0 |
| LoadRequested | The section is expected to load, but the loading hasn't started yet. It could be waiting for section 0 to load. |
1 |
| Loaded | The section has been loaded. |
2 |
| Loading | The section currently is loading. |
3 |
| UnloadRequested | The section has been marked for unloading but it hasn't been processed yet. |
4 |
| FailedToLoad | The section failed to load. |
5 |