短视频商城源码Unity改变text字间距

CMS系统
0 663
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using System;
using System.Collections.Generic;
namespace FrameWork
{
    /// <summary>
    /// 字体间距
    /// </summary>
    public class TextSpacing : BaseMeshEffect
    {
        public float _textSpacing = 1f;
 
        public override void ModifyMesh(VertexHelper vh)
        {
            if (!IsActive() || vh.currentVertCount == 0)
            {
                return;
            }
 
            Text text = GetComponent<Text>();
            if (text == null)
            {
                Debug.LogError("Missing Text component");
                return;
            }
 
            List<UIVertex> vertexs = new List<UIVertex>();
            vh.GetUIVertexStream(vertexs);
            int indexCount = vh.currentIndexCount;
 
            string[] lineTexts = text.text.Split('\n');
 
            Line[] lines = new Line[lineTexts.Length];
 
            //根据lines数组中各个元素的长度计算每一行中第一个点的索引,每个字、字母、空母均占6个点
            for (int i = 0; i < lines.Length; i++)
            {
                //除最后一行外,vertexs对于前面几行都有回车符占了6个点
                if (i == 0)
                {
                    lines[i] = new Line(0, lineTexts[i].Length + 1);
                }
                else if (i > 0 && i < lines.Length - 1)
                {
                    lines[i] = new Line(lines[i - 1].EndVertexIndex + 1, lineTexts[i].Length + 1);
                }
                else
                {
                    lines[i] = new Line(lines[i - 1].EndVertexIndex + 1, lineTexts[i].Length);
                }
            }
 
            UIVertex vt;
 
            for (int i = 0; i < lines.Length; i++)
            {
                for (int j = lines[i].StartVertexIndex + 6; j <= lines[i].EndVertexIndex; j++)
                {
                    if (j < 0 || j >= vertexs.Count)
                    {
                        continue;
                    }
                    vt = vertexs[j];
                    vt.position += new Vector3(_textSpacing * ((j - lines[i].StartVertexIndex) / 6), 0, 0);
                    vertexs[j] = vt;
                    //以下注意点与索引的对应关系
                    if (j % 6 <= 2)
                    {
                        vh.SetUIVertex(vt, (j / 6) * 4 + j % 6);
                    }
                    if (j % 6 == 4)
                    {
                        vh.SetUIVertex(vt, (j / 6) * 4 + j % 6 - 1);
                    }
                }
            }
        }
    }
}
public class Line
{
 
    private int _startVertexIndex = 0;
    /// <summary>
    /// 起点索引
    /// </summary>
    public int StartVertexIndex
    {
        get
        {
            return _startVertexIndex;
        }
    }
 
    private int _endVertexIndex = 0;
    /// <summary>
    /// 终点索引
    /// </summary>
    public int EndVertexIndex
    {
        get
        {
            return _endVertexIndex;
        }
    }
 
    private int _vertexCount = 0;
 
 
    public Line(int startVertexIndex, int length)
    {
        _startVertexIndex = startVertexIndex;
        _endVertexIndex = length * 6 - 1 + startVertexIndex;
        _vertexCount = length * 6;
    }
}


字数统计
精选帖子
Android QQ音乐 v11.3.7 定制版解锁免费听歌无广告版 1519
Android 草图大师SKP v1.5 解锁会员版 6906
Android OmoFun追漫神器 v4.2.1 无广告绿色版 4012
AdobeGenP Adobe全家桶系列激活工具 v3.5.0/3.4.14.1 绿色版 4613
Android 七猫免费听书 v1.4 解锁高级版 2837
超良心的抢票神器——Bypass1.16 2186
Android 玲珑加速器 v6.10.9.40 解锁无限时间 1404
Android 大师兄影视 v3.3.8 去广告会员版 585
DAWN 融资3300万美金,下一个挖矿空投大项目类似grass 875
热门帖子
国内爆款游戏搬砖,单机日入200+,长期稳定,多开多得,无脑操作 2443
0元免费领取3台华为云永久电脑,卡永久时长,BUG视频教程 1856
25年最新dp+今日头条玩法,单日收益稳定破1000+,只需简单复制粘贴即可! 1376
5月最新挂机项目8.0玩法轻松日入2000+ 1271
手机零撸项目,有快手就可以做,每天零碎时间搞个几百块不成问题 1158
视频号正规无人直播,小游戏AI无人直播,长期可做,日收益100+ 1135
【头条问答新蓝海】DeepSeek回答玩法首曝!碎片化时间,AI代答日入300+… 591
看广告,撸美金!!3分钟赚2.5美金!!日入200美金不是梦!揭秘Google… 276
最新AI一键头条原创文章,3分钟一条,0粉丝即可变现,日入1000+ 268