> For the complete documentation index, see [llms.txt](https://reflective-roommanager.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reflective-roommanager.gitbook.io/docs/user-manual/scene-management/loader/scene-loading-state.md).

# 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**

* ```csharp
  public void StartLoading()
  ```
  * It starts the load process. Sets `IsCurrentlyLoading` to true.
* ```csharp
  public void FinishLoading()
  ```
  * Completes the load process. Sets `IsCurrentlyLoading` to false.

This class manages loading operations by monitoring the loading status of scenes.
