isLoadingLevel
Is some level being loaded? (Read Only) (Obsolete).
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static bool isLoadingLevel { get; }
Remarks
Obsolete - please use the newer SceneManager class to handle all Scene loading operations.
Application.LoadLevel and Application.LoadLevelAdditive don't happen immediately - a new level is loaded after the current game frame finishes. isLoadingLevel returns if a level load was requested this frame already.
trueAdditional Resources: Application.LoadLevel, Application.LoadLevelAdditive.