mono spacing text works with right alignment now, example scene
parent
9e786f6aa6
commit
1ef67d5fba
Binary file not shown.
|
@ -1,10 +1,10 @@
|
||||||
/// Credit Deeperbeige
|
/// Credit herbst / derived from LetterSpacing by Deeperbeige
|
||||||
/// Sourced from - http://forum.unity3d.com/threads/adjustable-character-spacing-free-script.288277/
|
/// Sourced from - http://forum.unity3d.com/threads/adjustable-character-spacing-free-script.288277/
|
||||||
/*
|
/*
|
||||||
|
|
||||||
Produces an simple tracking/letter-spacing effect on UI Text components.
|
Produces an simple mono-spacing effect on UI Text components.
|
||||||
|
|
||||||
Set the spacing parameter to adjust letter spacing.
|
Set the spacing parameter to adjust mono spacing.
|
||||||
Negative values cuddle the text up tighter than normal. Go too far and it'll look odd.
|
Negative values cuddle the text up tighter than normal. Go too far and it'll look odd.
|
||||||
Positive values spread the text out more than normal. This will NOT respect the text area you've defined.
|
Positive values spread the text out more than normal. This will NOT respect the text area you've defined.
|
||||||
Zero spacing will present the font with no changes.
|
Zero spacing will present the font with no changes.
|
||||||
|
@ -50,17 +50,21 @@ namespace UnityEngine.UI.Extensions
|
||||||
/// Note, Vertex Count has changed in 5.2.1+, is now 6 (two tris) instead of 4 (tri strip).
|
/// Note, Vertex Count has changed in 5.2.1+, is now 6 (two tris) instead of 4 (tri strip).
|
||||||
public class MonoSpacing : BaseMeshEffect
|
public class MonoSpacing : BaseMeshEffect
|
||||||
{
|
{
|
||||||
|
public bool useHalfCharWidth = false;
|
||||||
public float halfCharWidth = 1;
|
public float halfCharWidth = 1;
|
||||||
|
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private float m_spacing = 0f;
|
private float m_spacing = 0f;
|
||||||
|
|
||||||
|
RectTransform rectTransform;
|
||||||
|
|
||||||
protected MonoSpacing() { }
|
protected MonoSpacing() { }
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
protected override void OnValidate()
|
protected override void OnValidate()
|
||||||
{
|
{
|
||||||
spacing = m_spacing;
|
spacing = m_spacing;
|
||||||
|
rectTransform = GetComponent<Text>().GetComponent<RectTransform>();
|
||||||
base.OnValidate();
|
base.OnValidate();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -86,7 +90,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
Text text = GetComponent<Text>();
|
Text text = GetComponent<Text>();
|
||||||
if (text == null)
|
if (text == null)
|
||||||
{
|
{
|
||||||
Debug.LogWarning("LetterSpacing: Missing Text component");
|
Debug.LogWarning("MonoSpacing: Missing Text component");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,9 +124,10 @@ namespace UnityEngine.UI.Extensions
|
||||||
for (int lineIdx=0; lineIdx < lines.Length; lineIdx++)
|
for (int lineIdx=0; lineIdx < lines.Length; lineIdx++)
|
||||||
{
|
{
|
||||||
string line = lines[lineIdx];
|
string line = lines[lineIdx];
|
||||||
float lineOffset = (line.Length -1) * letterOffset * alignmentFactor;
|
float lineOffset = (line.Length - 1) * letterOffset * (alignmentFactor) - (alignmentFactor - 0.5f) * rectTransform.rect.width;
|
||||||
|
|
||||||
|
var offsetX = -lineOffset + letterOffset / 2 * (1 - alignmentFactor * 2);
|
||||||
|
|
||||||
var offsetX = - lineOffset + letterOffset / 2;
|
|
||||||
for (int charIdx = 0; charIdx < line.Length; charIdx++)
|
for (int charIdx = 0; charIdx < line.Length; charIdx++)
|
||||||
{
|
{
|
||||||
int idx1 = glyphIdx * 6 + 0;
|
int idx1 = glyphIdx * 6 + 0;
|
||||||
|
@ -144,7 +149,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
// pos = Vector3.right * (letterOffset * (charIdx) - lineOffset);
|
// pos = Vector3.right * (letterOffset * (charIdx) - lineOffset);
|
||||||
float charWidth = (vert2.position - vert1.position).x;
|
float charWidth = (vert2.position - vert1.position).x;
|
||||||
var smallChar = charWidth < halfCharWidth;
|
var smallChar = useHalfCharWidth && (charWidth < halfCharWidth);
|
||||||
|
|
||||||
var smallCharOffset = smallChar ? -letterOffset/4 : 0;
|
var smallCharOffset = smallChar ? -letterOffset/4 : 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue