Skip to content

Commit 06696a4

Browse files
authored
Merge pull request #6 from mygamedevtools/update/open-upm-docs
[Update] Add OpenUPM documentation
2 parents 827c7a9 + f4bbb3b commit 06696a4

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 4 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+
## [3.2.1] - 2022-10-24
7+
- Added: OpenUPM documentation.
8+
69
## [3.2.0] - 2022-10-03
710
- Fixed: Updated assembly definition and namespaces names to reflect the organization name changes.
811

@@ -53,6 +56,7 @@ All notable changes to this project will be documented in this file. This projec
5356
## [1.0.0] - 2019-07-27
5457
- Initial Asset Store release.
5558

59+
[3.2.1]: https://github.com/mygamedevtools/script-template/compare/3.2.0...3.2.1
5660
[3.2.0]: https://github.com/mygamedevtools/script-template/compare/3.1.0...3.2.0
5761
[3.1.0]: https://github.com/mygamedevtools/script-template/compare/3.0.0...3.1.0
5862
[3.0.0]: https://github.com/mygamedevtools/script-template/compare/2.2.0...3.0.0

README.md

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

@@ -15,10 +16,21 @@ This tool adds custom Script Templates to Unity that will serve as alternatives
1516
Installation
1617
---
1718

18-
#### [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)_
19-
You can open the Package Manager and then click on the `+` button on the top left corner. From there select `Add package from git URL...`, type `https://github.com/mygamedevtools/script-template.git` and click `Add`. The package will be imported by the Package Manager.
19+
### OpenUPM
2020

21-
:link: [Unity Official Documentation](https://docs.unity3d.com/Manual/upm-git.html)
21+
This package is available on the [OpenUPM](https://openupm.com/packages/com.mygamedevtools.script-template) registry. Add the package via the [openupm-cli](https://github.com/openupm/openupm-cli):
22+
23+
```
24+
openupm add com.mygamedevtools.script-template
25+
```
26+
27+
### [Installing from Git](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
28+
29+
1. Open `Edit/Project Settings/Package Manager`.
30+
2. Click <kbd>+</kbd>.
31+
3. Select `Add package from git URL...`.
32+
4. Paste `com.mygamedevtools.script-template` into name.
33+
5. Click `Add`.
2234

2335
Usage
2436
---

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.mygamedevtools.script-template",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"displayName": "Script Templates",
55
"description": "This tool adds custom Script Templates to Unity that will serve as alternatives for the default \"C#Script\" that I personally always modify before writing my scripts.\nIn essence, it allows customization of the script templates with dynamic data such as signature and namespace settings.\nAdditionally, it adds templates for others types of scripts rather than just Mono Behaviours.",
66
"unity": "2019.4",
@@ -13,7 +13,7 @@
1313
"editor"
1414
],
1515
"author": {
16-
"name": "My Unity Tools",
16+
"name": "My GameDev Tools",
1717
"email": "[email protected]",
1818
"url": "https://github.com/mygamedevtools"
1919
},

0 commit comments

Comments
 (0)