Skip to content

Commit 5d8c598

Browse files
committed
release v1.0.0
2 parents a9c4ec4 + 7793a42 commit 5d8c598

File tree

402 files changed

+136696
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+136696
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Environment (please complete the following information):**
18+
- Platform: [e.g. Editor(Windows/Mac), Standalone(Windows/Mac), iOS, Android, WebGL]
19+
- Unity: [e.g. 2018.2.8f1]
20+
- ShinyEffectForTMPro: [e.g. v1.0.0]
21+
22+
**Additional context**
23+
Add any other context, screenshots or gif animations about the bug here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context, screenshots or gif animations about the feature request here.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Question
3+
about: Feel free to ask us any question.
4+
5+
---
6+
7+
**Describe the question**
8+
A clear and concise description of what the question is.
9+
10+
**Environment (please complete the following information):**
11+
- Platform: [e.g. Editor(Windows/Mac), Standalone(Windows/Mac), iOS, Android, WebGL]
12+
- Unity: [e.g. 2018.2.8f1]
13+
- ShinyEffectForTMPro: [e.g. v1.0.0]
14+
15+
**Additional context**
16+
Add any other context, screenshots or gif animations about the question here.

.github_changelog_generator

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
issues-wo-labels=false
2+
pr-wo-labels=false
3+
exclude_labels=duplicate,question,invalid,wontfix,Duplicate,Question,Invalid,Wontfix,Meta: Exclude From Changelog

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[Ll]ibrary/
2+
[Tt]emp/
3+
[Oo]bj/
4+
[Bb]uild/
5+
/[Bb]uilds/
6+
/Assets/AssetStoreTools*
7+
8+
# Autogenerated VS/MD solution and project files
9+
ExportedObj/
10+
*.csproj
11+
*.unityproj
12+
*.sln
13+
*.suo
14+
*.tmp
15+
*.user
16+
*.userprefs
17+
*.pidb
18+
*.booproj
19+
*.svd
20+
21+
22+
# Unity3D generated meta files
23+
*.pidb.meta
24+
25+
# Unity3D Generated File On Crash Reports
26+
sysinfo.txt
27+
28+
# Mac
29+
*.DS_Store
30+
31+
# Builds
32+
*.apk
33+
34+
35+
# Packages
36+
*.unitypackage
37+
build.app
38+
unity.log
39+
40+
.vs/
41+
_Android/
42+
_iOS/
43+
_WebGL/
44+
_Standalone/

Assets/Coffee.meta

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Coffee/UIExtensions.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Coffee/UIExtensions/MeshEffectForTextMeshPro.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Coffee/UIExtensions/MeshEffectForTextMeshPro/Demo.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using UnityEngine;
4+
using UnityEngine.UI;
5+
using TMPro;
6+
7+
namespace Coffee.UIExtensions
8+
{
9+
public class DissolveEffectForTMPro_Demo : MonoBehaviour
10+
{
11+
public void Play ()
12+
{
13+
foreach (var d in GetComponentsInChildren<UIDissolve> ())
14+
{
15+
d.Play ();
16+
}
17+
}
18+
19+
public void SetEffectFactor (float value)
20+
{
21+
foreach (var d in GetComponentsInChildren<UIDissolve> ())
22+
{
23+
d.effectFactor = value;
24+
}
25+
}
26+
27+
public void SetWidth (float value)
28+
{
29+
foreach (var d in GetComponentsInChildren<UIDissolve> ())
30+
{
31+
d.width = value;
32+
}
33+
}
34+
35+
public void SetSoftness (float value)
36+
{
37+
foreach (var d in GetComponentsInChildren<UIDissolve> ())
38+
{
39+
d.softness = value;
40+
}
41+
}
42+
43+
public void SplitByCharacter (bool flag)
44+
{
45+
foreach (var d in GetComponentsInChildren<UIDissolve> ())
46+
{
47+
d.effectArea = flag ? EffectArea.Character : EffectArea.RectTransform;
48+
}
49+
}
50+
}
51+
}

0 commit comments

Comments
 (0)