https://github.com/stansassets/com.stansassets.scene-management
Provides a set of tools to organize scene loading and management in the Unity project.
https://github.com/stansassets/com.stansassets.scene-management
pattern scene stansassets tool unity unity-3d unity-asset unity-scripts unity-tool unity3d unity3d-plugin
Last synced: 12 months ago
JSON representation
Provides a set of tools to organize scene loading and management in the Unity project.
- Host: GitHub
- URL: https://github.com/stansassets/com.stansassets.scene-management
- Owner: StansAssets
- License: mit
- Created: 2020-05-11T00:11:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-04T05:39:07.000Z (about 2 years ago)
- Last Synced: 2025-04-06T02:12:08.619Z (about 1 year ago)
- Topics: pattern, scene, stansassets, tool, unity, unity-3d, unity-asset, unity-scripts, unity-tool, unity3d, unity3d-plugin
- Language: C#
- Size: 299 KB
- Stars: 5
- Watchers: 9
- Forks: 4
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scene Management
Provides a set of tools to organize scene loading and management in the Unity project.
[](https://www.npmjs.com/package/com.stansassets.scene-management)
[](https://openupm.com/packages/com.stansassets.scene-management/)
[](https://github.com/StansAssets/com.stansassets.scene-management/blob/master/LICENSE)
[](https://github.com/StansAssets/com.stansassets.scene-management/issues)
[API Reference](https://myapi) | [Forum](https://myforum) | [Wiki](https://github.com/StansAssets/com.stansassets.scene-management/wiki)
### Install from NPM
* Navigate to the `Packages` directory of your project.
* Adjust the [project manifest file](https://docs.unity3d.com/Manual/upm-manifestPrj.html) `manifest.json` in a text editor.
* Ensure `https://registry.npmjs.org/` is part of `scopedRegistries`.
* Ensure `com.stansassets` is part of `scopes`.
* Add `com.stansassets.scene-management` to the `dependencies`, stating the latest version.
A minimal example ends up looking like this. Please note that the version `X.Y.Z` stated here is to be replaced with [the latest released version](https://www.npmjs.com/package/com.stansassets.foundation) which is currently [](https://www.npmjs.com/package/com.stansassets.scene-management).
```json
{
"scopedRegistries": [
{
"name": "npmjs",
"url": "https://registry.npmjs.org/",
"scopes": [
"com.stansassets"
]
}
],
"dependencies": {
"com.stansassets.scene-management": "X.Y.Z",
...
}
}
```
* Switch back to the Unity software and wait for it to finish importing the added package.
### Install from OpenUPM
* Install openupm-cli `npm install -g openupm-cli` or `yarn global add openupm-cli`
* Enter your unity project folder `cd `
* Install package `openupm add com.stansassets.scene-management`