Debug Load status - Katsuya100/SceneLayer-Trial GitHub Wiki
While in Play mode, you can check to see if the Load situation is as expected.
Open the SceneLayerController inspector in Play mode.

A LoadView component has been generated to check the Load status.
The status displayed here is described below.
| Status | Details |
|---|---|
| Loading | Load callback of LoaderBehaviour is running. |
| Loaded | Load callback of LoaderBehaviour is completed and the InstantiateObject callback has not been executed.It will also have this status after the DestroyObject callback completes. |
| Instantiating | InstantiateObject callback of LoaderBehaviour is running. |
| Instantiated | InstantiateObject callback of LoaderBehaviour is completed. |
| Destroying | InstantiateObject callback of DestroyObject is running. |
| Unloading | InstantiateObject callback of Unload is running. |
| LoadingDependencies | Loading process of Loader on which it depends is in progress. |
| InstantiatingDependencies | Instantiating process of Loader on which it depends is in progress. |
| DestroyingDependencies | Destroying process of Loader on which it depends is in progress. |
| UnloadingDependencies | Unloading process of Loader on which it depends is in progress. |
| LoadingReverseDependencies | Loading process of Loader of dependency source is in progress. |
| InstantiatingReverseDependencies | Instantiating process of Loader of dependency source is in progress. |
| DestroyingReverseDependencies | Destroying process of Loader of dependency source is in progress. |
| UnloadingReverseDependencies | Unloading process of Loader of dependency source is in progress. |