Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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
Warning
Deprecated. This property is deprecated, please use LoadLevelAsync to detect if a specific scene is currently loading.
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
true
if a level load was requested this frame already.