1.0.0-preview.9

# [1.0.0-preview.9](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v1.0.0-preview.8...v1.0.0-preview.9) (2020-09-08)

### Bug Fixes

* TextMeshPro not work TMP_SubMeshUI ([56995e9](56995e9f81)), closes [#94](https://github.com/mob-sakai/SoftMaskForUGUI/issues/94)
pull/122/head
semantic-release-bot 2020-09-08 02:44:49 +00:00
parent 58eeefc698
commit 4d6a3a4f01
4 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,10 @@
# [1.0.0-preview.9](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v1.0.0-preview.8...v1.0.0-preview.9) (2020-09-08)
### Bug Fixes
* TextMeshPro not work TMP_SubMeshUI ([56995e9](https://github.com/mob-sakai/SoftMaskForUGUI/commit/56995e9f81218a40cfd777f51b9f11a86775a131)), closes [#94](https://github.com/mob-sakai/SoftMaskForUGUI/issues/94)
# [1.0.0-preview.8](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v1.0.0-preview.7...v1.0.0-preview.8) (2020-09-08)

View File

@ -158,7 +158,7 @@ Or, add a SoftMaskable components from the inspector of the SoftMask component.
<br><br><br><br>
## Support TextMeshPro
## Usage with TextMeshPro
To use SoftMask with TextMeshPro, import a sample asset.
@ -171,6 +171,8 @@ The assets will be imported into `Assets/Samples/UI Soft Mask/{version}/TextMesh
**NOTE:** You must import `TMP Essential Resources` before using. They include shaders, fonts, etc.
![](https://user-images.githubusercontent.com/12690315/83823700-8bcc6e00-a70f-11ea-8177-942860b7d4f0.png)
**NOTE:** If the shader error is not resolved, reimport the shader. Or, import the `TextMeshPro Support` again.

View File

@ -282,6 +282,7 @@ namespace Coffee.UISoftMask
{
if (!current) return;
if (!graphic) return;
if (graphic.name.Contains("TMP SubMeshUI")) return;
if (!graphic.material) return;
if (!graphic.material.shader) return;
if (graphic.material.shader.name != "Hidden/UI/Default (SoftMaskable)") return;

View File

@ -2,7 +2,7 @@
"name": "com.coffee.softmask-for-ugui",
"displayName": "UI Soft Mask",
"description": "UI Soft Mask is a smooth masking component for Unity UI (uGUI) elements.\nBy using SoftMask instead of the default Mask component, you can beautifully represent the rounded edges of UI elements.",
"version": "1.0.0-preview.8",
"version": "1.0.0-preview.9",
"unity": "2017.1",
"license": "MIT",
"repository": {