Skip to content

Commit d6fe606

Browse files
authored
Merge pull request #5 from mygamedevtools/update/open-upm-docs
[Update] Add OpenUPM documentation
2 parents fc9b6e9 + f1219f0 commit d6fe606

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Change Log
33

44
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.3.1] - 2022-10-24
7+
- Added: OpenUPM documentation.
8+
69
## [1.3.0] - 2022-10-03
710
- Fixed: Updated assembly definition and namespaces names to reflect the organization name changes.
811

@@ -16,6 +19,8 @@ All notable changes to this project will be documented in this file. This projec
1619
## [1.0.0] - 2022-09-05
1720
- Initial Release.
1821

22+
[1.3.1]: https://github.com/mygamedevtools/scene-loader/compare/1.3.0...1.3.1
23+
[1.3.0]: https://github.com/mygamedevtools/scene-loader/compare/1.2.0...1.3.0
1924
[1.2.0]: https://github.com/mygamedevtools/scene-loader/compare/1.1.0...1.2.0
2025
[1.1.0]: https://github.com/mygamedevtools/scene-loader/compare/1.0.0...1.1.0
2126
[1.0.0]: https://github.com/mygamedevtools/scene-loader/compare/f2b6582...1.0.0

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
![License](https://img.shields.io/github/license/mygamedevtools/scene-loader)
2+
[![openupm](https://img.shields.io/npm/v/com.mygamedevtools.scene-loader?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.mygamedevtools.scene-loader/)
23
![Release](https://img.shields.io/github/v/release/mygamedevtools/scene-loader?sort=semver)
34
![Last Commit](https://img.shields.io/github/last-commit/mygamedevtools/scene-loader)
45

@@ -10,21 +11,22 @@ _A package that standardizes the scene loading process among many different poss
1011
Installation
1112
---
1213

13-
#### - For 2019.1+: [Installing from a git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
14-
You can open the Package Manager and then click on the `+` button on the top left corner.
15-
From there select `Add package from git URL...`, type `https://github.com/mygamedevtools/scene-loader.git` and click `Add`.
16-
The package will be imported by the Package Manager.
14+
### OpenUPM
15+
16+
This package is available on the [OpenUPM](https://openupm.com/packages/com.mygamedevtools.scene-loader) registry. Add the package via the [openupm-cli](https://github.com/openupm/openupm-cli):
1717

18-
#### - Other Package Manager supported versions: Add manually to manifest
19-
You should add this to your `manifest.json` under the `Packages` folder on the root of your Unity Project:
2018
```
21-
{
22-
"dependencies": {
23-
"com.mygamedevtools.scene-loader": "https://github.com/mygamedevtools/scene-loader.git"
24-
}
25-
}
19+
openupm add com.mygamedevtools.scene-loader
2620
```
2721

22+
### [Installing from Git](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
23+
24+
1. Open `Edit/Project Settings/Package Manager`.
25+
2. Click <kbd>+</kbd>.
26+
3. Select `Add package from git URL...`.
27+
4. Paste `com.mygamedevtools.scene-loader` into name.
28+
5. Click `Add`.
29+
2830
Overview
2931
---
3032

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "com.mygamedevtools.scene-loader",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"displayName": "Scene Loader",
55
"description": "A package that standardizes the scene loading process among many different possibilities, including support for Coroutines, C# Tasks, UniTask and Addressables.",
66
"unity": "2019.4",
77
"keywords": [],
88
"author": {
9-
"name": "My Unity Tools",
9+
"name": "My GameDev Tools",
1010
"email": "joao.borks@gmail.com.br",
1111
"url": "https://github.com/mygamedevtools"
1212
},

0 commit comments

Comments
 (0)