-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
51 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
## Align Tools | ||
# Align Tools | ||
|
||
|
||
[![Build Status](https://travis-ci.org/litefeel/Unity-AlignTools.svg?branch=master)](https://travis-ci.org/litefeel/Unity-AlignTools) | ||
[![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) | ||
[![](https://img.shields.io/github/release/litefeel/Unity-AlignTools.svg?label=latest%20version)](https://github.com/litefeel/Unity-AlignTools/releases) | ||
[![](https://img.shields.io/github/license/litefeel/Unity-AlignTools.svg)](https://github.com/litefeel/Unity-AlignTools/blob/upm/LICENSE.md) | ||
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/litefeel) | ||
|
||
[Align Tools][AlignTools] is just perfect Unity asset plugin to align gui object. | ||
|
||
**Feature list:** | ||
## Feature list | ||
|
||
- Free | ||
- Align GUI object | ||
|
@@ -14,17 +18,39 @@ | |
- No runtime resources required | ||
- No scripting required | ||
|
||
## Install | ||
|
||
**Support** | ||
#### Using UnityPackageManager (for Unity 2018.3+) | ||
|
||
Find the manifest.json file in the Packages folder of your project and edit it to look like this: | ||
``` js | ||
{ | ||
"dependencies": { | ||
"com.litefeel.aligntools": "https://github.com/litefeel/Unity-AlignTools.git#upm", | ||
... | ||
} | ||
} | ||
``` | ||
|
||
#### Using .zip file (for Unity 5.0+) | ||
|
||
1. Download `Source code` from [Releases](https://github.com/litefeel/Unity-AlignTools/releases) | ||
2. Extract the package into your Unity project | ||
|
||
- Create issues by [issues][issues] page | ||
- Send email to me: <[email protected]> | ||
|
||
**ChangeLog** | ||
## How to use? | ||
|
||
<https://github.com/litefeel/Unity-AlignTools/blob/master/Assets/Plugins/Litefeel/AlignTools/CHANGELOG.txt> | ||
1. Select `Edit > Preferences… > Open Files With Default App` from the menu | ||
2. Input the file extensions, like txt | ||
3. Double click txt file, will open it with default application | ||
|
||
|
||
|
||
## Support | ||
|
||
- Create issues by [issues][issues] page | ||
- Send email to me: <[email protected]> | ||
|
||
|
||
[AlignTools]: https://github.com/litefeel/Unity-AlignTools (AlignTools) | ||
[issues]: https://github.com/litefeel/Unity-AlignTools/issues (AlignTools issues) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,23 @@ | |
"version": "1.3.0", | ||
"unity": "2018.2", | ||
"description": "Align Tools is just perfect Unity asset plugin to align gui object.", | ||
"keywords": ["UI", "Align", "Tools"], | ||
"keywords": [ | ||
"UI", | ||
"Align", | ||
"Tools" | ||
], | ||
"author": { | ||
"name": "litefeel", | ||
"email": "[email protected]", | ||
"url": "https://www.litefeel.com" | ||
}, | ||
"category": "Tools", | ||
"dependencies": { | ||
} | ||
"dependencies": {}, | ||
"samples": [ | ||
{ | ||
"displayName": "Sample", | ||
"description": "Sample for Align Tools", | ||
"path": "Samples~/Sample" | ||
} | ||
] | ||
} |