> For the complete documentation index, see [llms.txt](https://kb.heathen.group/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kb.heathen.group/old-kb/toolkit-for-ui-and-ux/unity/components/scenes-manager.md).

# Scenes Manager

## Introduction

{% hint style="info" %}
Part of the [Scenes Tools](/old-kb/toolkit-for-ui-and-ux/unity/learning/core-concepts/scenes-management.md) of the UX Complete asset
{% endhint %}

This componenet simply exposes events and features present on the [API.Scenes](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md) interface to the Unity Inspector for ease of use. This componenet can be used to drive progress bars and other elements that need to respond to scene processing events.

You can use as many Scenes Manager componenets as you like in as many scenes as you like, all funcitonality and data is actually stored in the API.Scenes interface and is not impacted by the existance or lack of existances of a Scenes Manager object.

## Definition

### Events

All events are available as Unity Events and Heathen [Game Events](/old-kb/assets/system-core/game-events.md)

#### Started

Occurs when a scenes operation starts, this may be a load, unload or both

#### Updated

Occurs each frame a scene operation updates

#### Completed

Occurs when a scenes operation completes

### Funcitons

All funcitons listed here are available on this componenet but are actually executed on the [API.Scenes](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md) interface, these are listed on this object for ease of use with Unity Inspector and tools such as Bolt.

#### [Transition](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md#transition-between-scenes)

#### [Load](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md#additive-load-unload)

#### [Unload](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md#additive-load-unload)

#### [Set Active](/old-kb/toolkit-for-ui-and-ux/unity/api/scenes.md#set-scene-active)
