Skip to content

Commit aca4171

Browse files
author
Christiaan Bloemendaal
committed
Updated package files
1 parent 92b515a commit aca4171

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
# Changelog
22

3-
## [1.0.2] - 2020-07-14
3+
## [2.0.0] - 2021-02-16
4+
### Changed
5+
- Code generation happens through CodeDom instead of custom generation
6+
7+
### Removed
8+
- Sorting Layer generator
49

10+
## [1.0.2] - 2020-07-14
511
### Fixed
612
- Missing meta file
713

814
## [1.0.1] - 2020-07-14
9-
1015
### Fixed
1116
- Dependency
1217

1318
## [1.0.0] - 2020-07-11
14-
1519
### Added
1620
- Layers Generator
1721
- Sorting Layers Generator

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ A package that contains generators that will generate classes containing the pro
2121
```
2222
openupm add net.tnrd.layerstagsgenerator
2323
```
24-
2. You can also install via git url by adding these entries in your **manifest.json**
25-
```json
26-
"net.tnrd.layerstagsgenerator": "https://github.com/Thundernerd/Unity3D-LayersTagsGenerator.git",
27-
"net.tnrd.codegenerator": "https://github.com/Thundernerd/Unity3D-CodeGenerator.git"
28-
```
24+
2. Installing through a [Unity Package](http://package-installer.glitch.me/v1/installer/package.openupm.com/net.tnrd.layerstagsgenerator?registry=https://package.openupm.com) created by the [Package Installer Creator](https://package-installer.glitch.me) from [Needle](https://needle.tools)
25+
26+
[<img src="https://img.shields.io/badge/-Download-success?style=for-the-badge"/>](http://package-installer.glitch.me/v1/installer/package.openupm.com/net.tnrd.layerstagsgenerator?registry=https://package.openupm.com)
2927

3028
## Usage
3129

@@ -34,12 +32,12 @@ Once you have installed the package into your project you can access the generat
3432
You can generate the Tags, Layers, and Sorting Layers all separately by using their respective menu items, or generate them all by using the Generate All menu item.
3533

3634

37-
![alt](./~Documentation/menu_items.png)
35+
![alt](./Documentation~/menu_items.png)
3836

3937

4038
Once you have generated one or more through the menu, you will see the files appear in your project located int he Generated folder, which resides at top level in your Assets folder.
4139

42-
![alt](./~Documentation/generated_files.png)
40+
![alt](./Documentation~/generated_files.png)
4341

4442
To use the generated files you simply access them through their classes which are: Tags, Layers, and SortingLayers.
4543
Below is an example of a use case for the Tags.

package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "net.tnrd.layertagsgenerator",
33
"displayName": "Layer Tags Generator",
4-
"version": "1.0.2",
4+
"version": "2.0.0",
55
"unity": "2019.1",
6-
"description": "A simple tool to generate files that contain the project's Layers, Sorting Layers, and Tags.",
6+
"description": "A simple tool to generate files that contain the project's Layers and Tags.",
77
"keywords": [
88
"layer",
99
"layers",
@@ -12,11 +12,8 @@
1212
"generator"
1313
],
1414
"author": {
15-
"name": "Christiaan Bloemendaal",
15+
"name": "TNRD",
1616
"email": "unity3d@tnrd.net",
1717
"url": "https://www.tnrd.net"
18-
},
19-
"dependencies": {
20-
"net.tnrd.codegenerator": "1.0.0"
2118
}
22-
}
19+
}

0 commit comments

Comments
 (0)