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 bf38caf commit 4d868bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 4d868bb

Please sign in to comment.