> For the complete documentation index, see [llms.txt](https://tools.continis.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tools.continis.io/superscenes/changelog.md).

# Changelog

### 1.1.2

(09/06/26)

* Null checks to guard against possible null reference exception on SuperScenes.Instance.
* Removed unused reference to Editor Coroutines.
* Reinforced checks for possible null reference errors.
* Removed wrong namespace.
* Fixed cleanup method when scene path is null.
* Fixed wrong URL in Welcome window.
* Fixed obsolete API for Unity 6.5, 6.6.

### 1.1.1

(09/02/25)

* Fixed an issue happening when Reimporting the whole project, that led to a loss of data because the SceneDataRegistry would get overwritten.

## 1.1.0 - OnGameStarted

(02/12/25)

* Introduced a new event that SceneComponents can respond to: [OnGameStarted](/superscenes/using-superscenes/superscenes-api.md#scenecomponent-base-class-api). This fires as soon as the game starts, both in the Editor (upon pressing Play) and in a build (when launching the game).
* Added settings to control the visibility and margin of the Scene shortcut icon in the Hierarchy.
* Fixed component names showing up with the whole namespace in the SceneComponent Property Drawer. Now they only display their class name.
* Fixed warning about UXML file's URI not being valid.
* Added Serializable attribute to SceneComponent template, to remove warning.

### 1.0.1

(08/09/25)

* Reorganised [API](/superscenes/using-superscenes/superscenes-api.md) so that it's easier to access scene components at runtime, even when the connected scene hasn't been loaded yet.

## 1.0.0 - First Release

(01/09/25)

* Adding components to scenes. Components are stored in SceneData SOs, indexed in a SceneDataRegistry SO.
* The SceneDataRegistry SO is automatically added to the Preloaded assets when building.
* A script template allows easy creation of new SceneComponents.
* Extension methods to the Scene struct type to access components.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://tools.continis.io/superscenes/changelog.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
