From 73321b9b6253b125b842a670963e23d0c206cf77 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Fri, 25 Jan 2019 20:14:18 +0900 Subject: [PATCH] Add documents --- CHANGELOG.md | 33 +++++++++ LICENSE.md | 7 ++ LICENSE.txt.meta => LICENSE.md.meta | 0 README.md | 102 ++++++++++++++++++++++++++++ package.json | 18 +++++ package.json.meta | 8 +++ 6 files changed, 168 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 LICENSE.md rename LICENSE.txt.meta => LICENSE.md.meta (100%) create mode 100644 README.md create mode 100644 package.json create mode 100644 package.json.meta diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5eff3e9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +## [v1.0.0](https://github.com/mob-sakai/UnmaskForUGUI/tree/v1.0.0) (2018-10-19) + +[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v0.2.0...v1.0.0) + +**Implemented enhancements:** + +- Add `Fit On LateUpdate` option [\#10](https://github.com/mob-sakai/UnmaskForUGUI/issues/10) + +## [v0.2.0](https://github.com/mob-sakai/UnmaskForUGUI/tree/v0.2.0) (2018-10-16) + +[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v0.1.0...v0.2.0) + +**Implemented enhancements:** + +- Update demo & readme [\#9](https://github.com/mob-sakai/UnmaskForUGUI/issues/9) + +## [v0.1.0](https://github.com/mob-sakai/UnmaskForUGUI/tree/v0.1.0) (2018-10-14) + +[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/987e437b26b83a78d6f54d6cc6778c3181e8e5dc...v0.1.0) + +**Implemented enhancements:** + +- Add demo [\#5](https://github.com/mob-sakai/UnmaskForUGUI/issues/5) +- Support nesting [\#4](https://github.com/mob-sakai/UnmaskForUGUI/issues/4) +- Following another object [\#3](https://github.com/mob-sakai/UnmaskForUGUI/issues/3) +- Ray through the unmasked rectangle [\#2](https://github.com/mob-sakai/UnmaskForUGUI/issues/2) +- Reverse mask [\#1](https://github.com/mob-sakai/UnmaskForUGUI/issues/1) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..6c53273 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +Copyright 2018 mob-sakai + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/LICENSE.txt.meta b/LICENSE.md.meta similarity index 100% rename from LICENSE.txt.meta rename to LICENSE.md.meta diff --git a/README.md b/README.md new file mode 100644 index 0000000..a965c0e --- /dev/null +++ b/README.md @@ -0,0 +1,102 @@ +UnmaskForUGUI +=== + +Reverse mask for uGUI element in Unity. + +![](https://user-images.githubusercontent.com/12690315/46914021-c6c9dd00-cfd2-11e8-9698-6332bac8fef5.png) + +[![](https://img.shields.io/github/release/mob-sakai/UnmaskForUGUI.svg?label=latest%20version)](https://github.com/mob-sakai/UnmaskForUGUI/releases) +[![](https://img.shields.io/github/release-date/mob-sakai/UnmaskForUGUI.svg)](https://github.com/mob-sakai/UnmaskForUGUI/releases) +![](https://img.shields.io/badge/unity-5.5%2B-green.svg) +[![](https://img.shields.io/github/license/mob-sakai/UnmaskForUGUI.svg)](https://github.com/mob-sakai/UnmaskForUGUI/blob/master/LICENSE.txt) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-orange.svg)](http://makeapullrequest.com) + +<< [Description](#Description) | [WebGL Demo](#demo) | [Download](https://github.com/mob-sakai/UnmaskForUGUI/releases) | [Usage](#usage) >> + +### What's new? [See changelog ![](https://img.shields.io/github/release-date/mob-sakai/UnmaskForUGUI.svg?label=last%20updated)](https://github.com/mob-sakai/UnmaskForUGUI/blob/develop/CHANGELOG.md) +### Do you want to receive notifications for new releases? [Watch this repo ![](https://img.shields.io/github/watchers/mob-sakai/UnmaskForUGUI.svg?style=social&label=Watch)](https://github.com/mob-sakai/UnmaskForUGUI/subscription) + + + +



+## Description + +Unmask provides the following features: +1. Reverse mask +2. Ray through the unmasked rectangle +3. Following another object +4. Support nesting + +| Component | Features | Screenshot | +|-|-|-| +|**Unmask**|Reverse masking for parent Mask component.

**Auto Fit Target:** Fit graphic's transform to target transform on LateUpdate.
**Show Unmask Graphic:** Show the graphic that is associated with the unmask render area.|| +|**UnmaskRaycastFilter**|The ray Passes through the unmasked rectangle.
You can click on the unmasked button on the back side.|| + + + +



+## Demo + +[WebGL Demo](http://mob-sakai.github.io/UnmaskForUGUI) + +![demo](https://user-images.githubusercontent.com/12690315/46986251-4e296480-d129-11e8-8e3a-2bb0e5fbe533.gif) + + + +



+## Usage + +1. Download `*.unitypackage` from [Releases](https://github.com/mob-sakai/UnmaskForUGUI/releases). +2. Import the package into your Unity project. Select `Import Package > Custom Package` from the `Assets` menu. +![](https://user-images.githubusercontent.com/12690315/46570979-edbb5a00-c9a7-11e8-845d-c5ee279effec.png) +3. Add Unmask component to the UI element (Image, RawImage, Text, etc...) under Mask, from `Add Component` in inspector or `Component > UI > Unmask > Unmask` menu. +4. If you want to unmask the area of the button, follow the steps below: + * Set the button to `Fit Target` in Unmask component. + * If the button moves with animation etc., enable `Fit On LateUpdate` in Unmask component. + * Add a UnmaskRaycastFilter component to UI element blocking ray. + * Set the Unmask to `Unmask` in UnmaskRaycastFilter component. + * Disable `RaycastTarget` of the UI elements, as necessary. +![](https://user-images.githubusercontent.com/12690315/46986095-8a0ffa00-d128-11e8-83ac-9151e2d8635d.gif) +1. Enjoy! + + +##### Requirement + +* Unity 5.5+ *(included Unity 2018.x)* +* No other SDK are required + + + +



+## Example of using + +| Case | Description |Screenshot | +|-|-|-| +|Unmasked text|Black screen is cut out with unmasked text.|![](https://user-images.githubusercontent.com/12690315/46914021-c6c9dd00-cfd2-11e8-9698-6332bac8fef5.png)| +|Hole|Black screen is cut out with unmasked Image.|![](https://user-images.githubusercontent.com/12690315/46985696-9b580700-d126-11e8-9b4a-3d66180c9562.png)| +|Tutorial button|In tutorial, only specific button can be pressed.|![](https://user-images.githubusercontent.com/12690315/46983810-30560280-d11d-11e8-86d5-b25117740df4.png)| +|Transition|Transition effect with silhouette.|![](https://user-images.githubusercontent.com/12690315/46983811-30560280-d11d-11e8-8d81-b38679cf9970.gif)| + + + +



+## License + +* MIT +* © UTJ/UCL + + + +## Author + +[mob-sakai](https://github.com/mob-sakai) + + + +## See Also + +* GitHub page : https://github.com/mob-sakai/UnmaskForUGUI +* Releases : https://github.com/mob-sakai/UnmaskForUGUI/releases +* Issue tracker : https://github.com/mob-sakai/UnmaskForUGUI/issues +* Current project : https://github.com/mob-sakai/UnmaskForUGUI/projects/1 +* Change log : https://github.com/mob-sakai/UnmaskForUGUI/blob/master/CHANGELOG.md diff --git a/package.json b/package.json new file mode 100644 index 0000000..6aa2b04 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "com.coffee.unmask", + "displayName": "Unmask for uGUI", + "description": "Reverse mask for uGUI element in Unity.", + "version": "1.0.0", + "unity": "5.5", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/mob-sakai/UnmaskForUGUI.git" + }, + "src": "Assets/Coffee/UIExtensions/UnmaskForUGUI", + "author": "mob-sakai (https://github.com/mob-sakai)", + "editorOnly": false, + "upmSupport": true, + "dependencies": { + } +} \ No newline at end of file diff --git a/package.json.meta b/package.json.meta new file mode 100644 index 0000000..f816f44 --- /dev/null +++ b/package.json.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 011faffdd04c64066883bc8402a48942 +timeCreated: 1548415750 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: