Loadステータスの確認 - Katsuya100/SceneLayer-Trial GitHub Wiki

Playモード中、想定通りのLoad状況になっているか確認することができます。
PlayモードでSceneLayerControllerのInspectorを開きます。
image
LoadViewコンポーネントが生成されており、Loadステータスの確認ができます。
ここで表示されているステータスは下記に記載します。

ステータス 説明
Loading LoaderBehaviourLoad コールバックが実行中
Loaded LoaderBehaviourLoad コールバックが完了しており、InstantiateObject コールバックが実行されていない状態。また、 DestroyObject コールバック完了後もこのステータスになる。
Instantiating LoaderBehaviourInstantiateObject コールバックが実行中
Instantiated LoaderBehaviourInstantiateObject コールバックが完了
Destroying LoaderBehaviourDestroyObject コールバックが実行中
Unloading LoaderBehaviourUnload コールバックが実行中
LoadingDependencies 依存先のLoaderのLoad処理中
InstantiatingDependencies 依存先のLoaderのInstantiate処理中
DestroyingDependencies 依存先のLoaderのDestroy処理中
UnloadingDependencies 依存先のLoaderのUnload処理中
LoadingReverseDependencies 依存元のLoaderのLoad処理中
InstantiatingReverseDependencies 依存元のLoaderのInstantiate処理中
DestroyingReverseDependencies 依存のLoaderのDestroy処理中
UnloadingReverseDependencies 依存のLoaderのUnload処理中