Skip to content

Commit ef2b71b

Browse files
ci(release): 3.0.2 [skip ci]
## [3.0.2](3.0.1...3.0.2) (2024-08-16) ### Bug Fixes * add warning and documentation regarding Awake() ([#43](#43)) ([e24423d](e24423d))
1 parent e24423d commit ef2b71b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [3.0.2](https://github.com/mygamedevtools/scene-loader/compare/3.0.1...3.0.2) (2024-08-16)
4+
5+
6+
### Bug Fixes
7+
8+
* add warning and documentation regarding Awake() ([#43](https://github.com/mygamedevtools/scene-loader/issues/43)) ([e24423d](https://github.com/mygamedevtools/scene-loader/commit/e24423ddd568e3cce856f9ce6b14c49ec3061d48))
9+
310
## [3.0.1](https://github.com/mygamedevtools/scene-loader/compare/3.0.0...3.0.1) (2024-07-31)
411

512

Packages/com.mygamedevtools.scene-loader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.mygamedevtools.scene-loader",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"displayName": "Advanced Scene Manager",
55
"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.",
66
"unity": "2021.3",

0 commit comments

Comments
 (0)