-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUIGradientEffect.cs
211 lines (161 loc) · 5.73 KB
/
UIGradientEffect.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#region Header
/* ============================================
* Author : Strix
* Initial Creation Date : 2020-06-15
* Summary :
*
* 원본 출처 : https://www.youtube.com/watch?v=X-H5Zu3k4Es
*
* 기능추가
* - 애니메이션 방향 조정
* - 업데이트 모드 추가
* - 이미지 / 텍스트 범용 적용
*
* Template : New Behaviour For Unity Editor V2
============================================ */
#endregion Header
using UnityEngine;
using System.Collections.Generic;
using UnityEngine.UI;
using System.Linq;
/// <summary>
/// Texture, Image 등 UI 컴포넌트를 Gradient 효과를 냅니다.
/// </summary>
[RequireComponent(typeof(Graphic))]
public class UIGradientEffect : BaseMeshEffect
{
/* const & readonly declaration */
/* enum & struct declaration */
public enum EGradientDirection
{
Left_To_Right,
Right_To_Left,
}
public enum EUpdateMode
{
Time,
RealTime,
Manual,
}
/* public - Field declaration */
public Graphic pGraphicTarget { get; private set; }
[Header("이펙트 설정")]
public Gradient pGradient = new Gradient();
public float fSpeed = 1f;
[Space(10)]
[Header("색상변화 방향")]
public EGradientDirection eGradient_Direction = EGradientDirection.Left_To_Right;
[Space(10)]
public EUpdateMode eUpdateMode = EUpdateMode.Time;
/* protected & private - Field declaration */
delegate float OnCalculate_GradientEvaluate(float fMin, float fMax, float fCurrent, float fElapseTime);
private static readonly Dictionary<EGradientDirection, OnCalculate_GradientEvaluate> g_map_OnCalculateEvaluate = new Dictionary<EGradientDirection, OnCalculate_GradientEvaluate>()
{
{ EGradientDirection.Left_To_Right, Calculate_Left_To_Right },
{ EGradientDirection.Right_To_Left, Calculate_Right_ToLeft }
};
readonly List<UIVertex> _listVertex = new List<UIVertex>();
private float _fElapseTime;
private bool _bIsEnable = true;
Color _sColorOrigin;
// ========================================================================== //
/* public - [Do~Something] Function */
static float Calculate_Left_To_Right(float fMin, float fMax, float fCurrent, float fElapseTime)
{
float fCurXNormalized = Mathf.InverseLerp(fMin, fMax, fCurrent) - fElapseTime;
fCurXNormalized = Mathf.PingPong(fCurXNormalized, 1f);
return fCurXNormalized;
}
static float Calculate_Right_ToLeft(float fMin, float fMax, float fCurrent, float fElapseTime)
{
float fCurXNormalized = Mathf.InverseLerp(fMin, fMax, fCurrent) + fElapseTime;
fCurXNormalized = Mathf.PingPong(fCurXNormalized, 1f);
return fCurXNormalized;
}
/// <summary>
/// 이 컴포넌트의 Enable유무
/// <para> false일 시 원래 색상으로 되돌립니다.</para>
/// </summary>
/// <param name="bEnable"></param>
public void DoSetEnable(bool bEnable)
{
if (pGraphicTarget == null)
Awake();
_bIsEnable = bEnable;
if (bEnable == false)
{
pGraphicTarget.color = _sColorOrigin;
pGraphicTarget.SetAllDirty();
}
}
public void DoUpdate(float fDeltaTime)
{
_fElapseTime += fDeltaTime * fSpeed;
pGraphicTarget.SetAllDirty();
}
// ========================================================================== //
/* protected - [Override & Unity API] */
#if UNITY_EDITOR
protected override void Reset()
{
GradientColorKey[] arrColorKey =
{
new GradientColorKey(Color.red, 0f),
new GradientColorKey(Color.blue, 1f)
};
GradientAlphaKey[] arrAlphaKey =
{
new GradientAlphaKey(1f, 0f),
new GradientAlphaKey(1f, 1f)
};
pGradient.SetKeys(arrColorKey, arrAlphaKey);
}
#endif
protected override void Awake()
{
pGraphicTarget = GetComponent<Graphic>();
_sColorOrigin = pGraphicTarget.color;
}
private void Update()
{
switch (eUpdateMode)
{
case EUpdateMode.Time:
DoUpdate(Time.deltaTime);
break;
case EUpdateMode.RealTime:
DoUpdate(Time.unscaledDeltaTime);
break;
}
}
public override void ModifyMesh(VertexHelper pVertexHelper)
{
if (_bIsEnable == false)
return;
if (_fElapseTime <= 0f)
return;
if (g_map_OnCalculateEvaluate.TryGetValue(eGradient_Direction, out OnCalculate_GradientEvaluate OnCalculateHow) == false)
{
Debug.LogError($"{name} - Error NotContain {nameof(g_map_OnCalculateEvaluate)} // eGradient_Direction: {eGradient_Direction}");
return;
}
_listVertex.Clear();
pVertexHelper.GetUIVertexStream(_listVertex);
if (_listVertex.Count == 0) // Text의 경우 길이가 0이면 Vertex가 없을 수 있음
return;
float fMin = _listVertex.Min(p => p.position.x);
float fMax = _listVertex.Max(p => p.position.x);
for (int i = 0; i < _listVertex.Count; i++)
{
UIVertex sVertex = _listVertex[i];
sVertex.color = pGradient.Evaluate(OnCalculateHow(fMin, fMax, sVertex.position.x, _fElapseTime));
_listVertex[i] = sVertex;
}
pVertexHelper.Clear();
pVertexHelper.AddUIVertexTriangleStream(_listVertex);
}
/* protected - [abstract & virtual] */
// ========================================================================== //
#region Private
#endregion Private
}