Skip to content

Commit b8167bd

Browse files
ci(release): 3.0.0 [skip ci]
# [3.0.0](2.3.2...3.0.0) (2024-06-19) ### Features * unify addressable and non-addressable workflows ([#37](#37)) ([68e93f3](68e93f3)) ### BREAKING CHANGES * The ISceneManager, ISceneLoader and ILoadSceneInfo interfaces have been changed to accomodate the unification of addressable and non-addressable workflows. Refer to the migration guide at https://github.com/mygamedevtools/scene-loader/wiki/Migration-Guide-3.x for more details
1 parent 68e93f3 commit b8167bd

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

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

3+
# [3.0.0](https://github.com/mygamedevtools/scene-loader/compare/2.3.2...3.0.0) (2024-06-19)
4+
5+
6+
### Features
7+
8+
* unify addressable and non-addressable workflows ([#37](https://github.com/mygamedevtools/scene-loader/issues/37)) ([68e93f3](https://github.com/mygamedevtools/scene-loader/commit/68e93f3e36efdf5cc3e12adb92490cbc3e75f77f))
9+
10+
11+
### BREAKING CHANGES
12+
13+
* The ISceneManager, ISceneLoader and ILoadSceneInfo interfaces have been changed to accomodate the unification of addressable and non-addressable workflows. Refer to the migration guide at https://github.com/mygamedevtools/scene-loader/wiki/Migration-Guide-3.x for more details
14+
315
# [3.0.0-pre.8](https://github.com/mygamedevtools/scene-loader/compare/3.0.0-pre.7...3.0.0-pre.8) (2024-06-15)
416

517

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "com.mygamedevtools.scene-loader",
3-
"version": "3.0.0-pre.8",
3+
"version": "3.0.0",
44
"displayName": "Advanced Scene Manager",
5-
"description": "This package simplifies scene operations: load, unload and transition. In a quick example:\n\n\u2590 // Unity Manager scene transition\n\u2590 yield return SceneManager.LoadSceneAsync(\"my-loading-scene\",\n\u2590 LoadSceneMode.Additive);\n\u2590 yield return SceneManager.LoadSceneAsync(\"my-target-scene\",\n\u2590 LoadSceneMode.Additive);\n\u2590\n\u2590 SceneManager.SetActiveScene(\n\u2590 SceneManager.GetSceneByName(\"my-target-scene\"));\n\u2590\n\u2590 SceneManager.UnloadSceneAsync(\"my-loading-scene\");\n\u2590 SceneManager.UnloadSceneAsync(\"my-previous-scene\");\n\u2590\n\u2590 // Advanced Scene Management scene transition\n\u2590 sceneLoader.TransitionToScene(\n\u2590 new LoadSceneInfoName(\"my-target-scene\"),\n\u2590 new LoadSceneInfoName(\"my-loading-scene\"));\n\nYou can also take advantage of these features:\n\n\u25AA Unified API for addressable and non-addressable scenes.\n\u25AA Awaitable scene operations.\n\u25AA Modular implementation with interfaces.\n\u25AA Load, unload or transition to multiple scenes.",
5+
"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",
77
"keywords": [],
88
"author": {
@@ -15,4 +15,4 @@
1515
"licensesUrl": "https://github.com/mygamedevtools/scene-loader?tab=MIT-1-ov-file",
1616
"changelogUrl": "https://github.com/mygamedevtools/scene-loader/blob/main/CHANGELOG.md",
1717
"hideInEditor": false
18-
}
18+
}

0 commit comments

Comments
 (0)