Skip to content

Commit

Permalink
ci(release): 3.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [3.0.2](3.0.1...3.0.2) (2024-08-16)

### Bug Fixes

* add warning and documentation regarding Awake() ([#43](#43)) ([e24423d](e24423d))
  • Loading branch information
semantic-release-bot committed Aug 16, 2024
1 parent e24423d commit ef2b71b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [3.0.2](https://github.com/mygamedevtools/scene-loader/compare/3.0.1...3.0.2) (2024-08-16)


### Bug Fixes

* add warning and documentation regarding Awake() ([#43](https://github.com/mygamedevtools/scene-loader/issues/43)) ([e24423d](https://github.com/mygamedevtools/scene-loader/commit/e24423ddd568e3cce856f9ce6b14c49ec3061d48))

## [3.0.1](https://github.com/mygamedevtools/scene-loader/compare/3.0.0...3.0.1) (2024-07-31)


Expand Down
2 changes: 1 addition & 1 deletion Packages/com.mygamedevtools.scene-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.mygamedevtools.scene-loader",
"version": "3.0.1",
"version": "3.0.2",
"displayName": "Advanced Scene Manager",
"description": "This package simplifies scene operations: load, unload and transition. In a quick example:\n\n▐ // Unity Manager scene transition\n▐ yield return SceneManager.LoadSceneAsync(\"my-loading-scene\",\n▐ LoadSceneMode.Additive);\n▐ yield return SceneManager.LoadSceneAsync(\"my-target-scene\",\n▐ LoadSceneMode.Additive);\n▐\n▐ SceneManager.SetActiveScene(\n▐ SceneManager.GetSceneByName(\"my-target-scene\"));\n▐\n▐ SceneManager.UnloadSceneAsync(\"my-loading-scene\");\n▐ SceneManager.UnloadSceneAsync(\"my-previous-scene\");\n▐\n▐ // Advanced Scene Management scene transition\n▐ sceneLoader.TransitionToScene(\n▐ new LoadSceneInfoName(\"my-target-scene\"),\n▐ new LoadSceneInfoName(\"my-loading-scene\"));\n\nYou can also take advantage of these features:\n\n▪ Unified API for addressable and non-addressable scenes.\n▪ Awaitable scene operations.\n▪ Modular implementation with interfaces.\n▪ Load, unload or transition to multiple scenes.",
"unity": "2021.3",
Expand Down

0 comments on commit ef2b71b

Please sign in to comment.