This class tracks the loading status of scenes.
public bool IsCurrentlyLoading { get; private set; }:
public bool IsCurrentlyLoading { get; private set; }
It currently returns true when the load is done, false otherwise.
public void StartLoading()
It starts the load process. Sets IsCurrentlyLoading to true.
IsCurrentlyLoading
public void FinishLoading()
Completes the load process. Sets IsCurrentlyLoading to false.
This class manages loading operations by monitoring the loading status of scenes.
Last updated 2 years ago