Skip to content

Commit b9a1f38

Browse files
committed
Use Sample instand of Examples
1 parent 5d8e83a commit b9a1f38

File tree

5 files changed

+51
-19
lines changed

5 files changed

+51
-19
lines changed

Examples.meta

-9
This file was deleted.

README.md

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
## Align Tools
1+
# Align Tools
2+
23

34
[![Build Status](https://travis-ci.org/litefeel/Unity-AlignTools.svg?branch=master)](https://travis-ci.org/litefeel/Unity-AlignTools)
45
[![Join the chat at https://gitter.im/litefeel/Unity-AlignTools](https://badges.gitter.im/litefeel/Unity-AlignTools.svg)](https://gitter.im/litefeel/Unity-AlignTools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
[![](https://img.shields.io/github/release/litefeel/Unity-AlignTools.svg?label=latest%20version)](https://github.com/litefeel/Unity-AlignTools/releases)
7+
[![](https://img.shields.io/github/license/litefeel/Unity-AlignTools.svg)](https://github.com/litefeel/Unity-AlignTools/blob/upm/LICENSE.md)
8+
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/litefeel)
59

610
[Align Tools][AlignTools] is just perfect Unity asset plugin to align gui object.
711

8-
**Feature list:**
12+
## Feature list
913

1014
- Free
1115
- Align GUI object
@@ -14,17 +18,39 @@
1418
- No runtime resources required
1519
- No scripting required
1620

21+
## Install
1722

18-
**Support**
23+
#### Using UnityPackageManager (for Unity 2018.3+)
24+
25+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
26+
``` js
27+
{
28+
"dependencies": {
29+
"com.litefeel.aligntools": "https://github.com/litefeel/Unity-AlignTools.git#upm",
30+
...
31+
}
32+
}
33+
```
34+
35+
#### Using .zip file (for Unity 5.0+)
36+
37+
1. Download `Source code` from [Releases](https://github.com/litefeel/Unity-AlignTools/releases)
38+
2. Extract the package into your Unity project
1939

20-
- Create issues by [issues][issues] page
21-
- Send email to me: <[email protected]>
2240

23-
**ChangeLog**
41+
## How to use?
2442

25-
<https://github.com/litefeel/Unity-AlignTools/blob/master/Assets/Plugins/Litefeel/AlignTools/CHANGELOG.txt>
43+
1. Select `Edit > Preferences… > Open Files With Default App` from the menu
44+
2. Input the file extensions, like txt
45+
3. Double click txt file, will open it with default application
2646

2747

2848

49+
## Support
50+
51+
- Create issues by [issues][issues] page
52+
- Send email to me: <[email protected]>
53+
54+
2955
[AlignTools]: https://github.com/litefeel/Unity-AlignTools (AlignTools)
3056
[issues]: https://github.com/litefeel/Unity-AlignTools/issues (AlignTools issues)
File renamed without changes.
File renamed without changes.

package.json

+18-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,23 @@
44
"version": "1.3.0",
55
"unity": "2018.2",
66
"description": "Align Tools is just perfect Unity asset plugin to align gui object.",
7-
"keywords": ["UI", "Align", "Tools"],
7+
"keywords": [
8+
"UI",
9+
"Align",
10+
"Tools"
11+
],
12+
"author": {
13+
"name": "litefeel",
14+
"email": "[email protected]",
15+
"url": "https://www.litefeel.com"
16+
},
817
"category": "Tools",
9-
"dependencies": {
10-
}
18+
"dependencies": {},
19+
"samples": [
20+
{
21+
"displayName": "Sample",
22+
"description": "Sample for Align Tools",
23+
"path": "Samples~/Sample"
24+
}
25+
]
1126
}

0 commit comments

Comments
 (0)