104 lines
4.1 KiB
C#
104 lines
4.1 KiB
C#
/// Credit Breyer
|
|
/// Sourced from - http://forum.unity3d.com/threads/scripts-useful-4-6-scripts-collection.264161/#post-1780095
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.UI.Extensions
|
|
{
|
|
[AddComponentMenu("UI/Effects/Extensions/Gradient")]
|
|
public class Gradient : BaseVertexEffect
|
|
{
|
|
public GradientMode gradientMode = GradientMode.Global;
|
|
public GradientDir gradientDir = GradientDir.Vertical;
|
|
public bool overwriteAllColor = false;
|
|
public Color vertex1 = Color.white;
|
|
public Color vertex2 = Color.black;
|
|
private Graphic targetGraphic;
|
|
|
|
protected override void Start()
|
|
{
|
|
targetGraphic = GetComponent<Graphic>();
|
|
}
|
|
|
|
public override void ModifyVertices(List<UIVertex> vertexList)
|
|
{
|
|
if (!IsActive() || vertexList.Count == 0)
|
|
{
|
|
return;
|
|
}
|
|
int count = vertexList.Count;
|
|
UIVertex uiVertex = vertexList[0];
|
|
if (gradientMode == GradientMode.Global)
|
|
{
|
|
if (gradientDir == GradientDir.DiagonalLeftToRight || gradientDir == GradientDir.DiagonalRightToLeft)
|
|
{
|
|
#if UNITY_EDITOR
|
|
Debug.LogWarning("Diagonal dir is not supported in Global mode");
|
|
#endif
|
|
gradientDir = GradientDir.Vertical;
|
|
}
|
|
float bottomY = gradientDir == GradientDir.Vertical ? vertexList[vertexList.Count - 1].position.y : vertexList[vertexList.Count - 1].position.x;
|
|
float topY = gradientDir == GradientDir.Vertical ? vertexList[0].position.y : vertexList[0].position.x;
|
|
|
|
float uiElementHeight = topY - bottomY;
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
uiVertex = vertexList[i];
|
|
if (!overwriteAllColor && uiVertex.color != targetGraphic.color)
|
|
continue;
|
|
uiVertex.color *= Color.Lerp(vertex2, vertex1, ((gradientDir == GradientDir.Vertical ? uiVertex.position.y : uiVertex.position.x) - bottomY) / uiElementHeight);
|
|
vertexList[i] = uiVertex;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
uiVertex = vertexList[i];
|
|
if (!overwriteAllColor && !CompareCarefully(uiVertex.color, targetGraphic.color))
|
|
continue;
|
|
switch (gradientDir)
|
|
{
|
|
case GradientDir.Vertical:
|
|
uiVertex.color *= (i % 4 == 0 || (i - 1) % 4 == 0) ? vertex1 : vertex2;
|
|
break;
|
|
case GradientDir.Horizontal:
|
|
uiVertex.color *= (i % 4 == 0 || (i - 3) % 4 == 0) ? vertex1 : vertex2;
|
|
break;
|
|
case GradientDir.DiagonalLeftToRight:
|
|
uiVertex.color *= (i % 4 == 0) ? vertex1 : ((i - 2) % 4 == 0 ? vertex2 : Color.Lerp(vertex2, vertex1, 0.5f));
|
|
break;
|
|
case GradientDir.DiagonalRightToLeft:
|
|
uiVertex.color *= ((i - 1) % 4 == 0) ? vertex1 : ((i - 3) % 4 == 0 ? vertex2 : Color.Lerp(vertex2, vertex1, 0.5f));
|
|
break;
|
|
|
|
}
|
|
vertexList[i] = uiVertex;
|
|
}
|
|
}
|
|
}
|
|
private bool CompareCarefully(Color col1, Color col2)
|
|
{
|
|
if (Mathf.Abs(col1.r - col2.r) < 0.003f && Mathf.Abs(col1.g - col2.g) < 0.003f && Mathf.Abs(col1.b - col2.b) < 0.003f && Mathf.Abs(col1.a - col2.a) < 0.003f)
|
|
return true;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public enum GradientMode
|
|
{
|
|
Global,
|
|
Local
|
|
}
|
|
|
|
public enum GradientDir
|
|
{
|
|
Vertical,
|
|
Horizontal,
|
|
DiagonalLeftToRight,
|
|
DiagonalRightToLeft
|
|
//Free
|
|
}
|
|
//enum color mode Additive, Multiply, Overwrite
|
|
} |