Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 1 month ago
JSON representation

Provides a set of tools to organize scene loading and management in the Unity project.

Awesome Lists containing this project

README

        

# Scene Management
Provides a set of tools to organize scene loading and management in the Unity project.

[![NPM Package](https://img.shields.io/npm/v/com.stansassets.scene-management)](https://www.npmjs.com/package/com.stansassets.scene-management)
[![openupm](https://img.shields.io/npm/v/com.stansassets.scene-management?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.stansassets.scene-management/)
[![Licence](https://img.shields.io/npm/l/com.stansassets.scene-management)](https://github.com/StansAssets/com.stansassets.scene-management/blob/master/LICENSE)
[![Issues](https://img.shields.io/github/issues/StansAssets/com.stansassets.scene-management)](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 [![NPM Package](https://img.shields.io/npm/v/com.stansassets.scene-management)](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`