Scene Loading State
This class tracks the loading status of scenes.
Members
public bool IsCurrentlyLoading { get; private set; }
:It currently returns true when the load is done, false otherwise.
Methods
It starts the load process. Sets
IsCurrentlyLoading
to true.
Completes the load process. Sets
IsCurrentlyLoading
to false.
This class manages loading operations by monitoring the loading status of scenes.
Last updated