91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用UGU怎么調整Text中的字體間距

發布時間:2021-05-31 17:58:09 來源:億速云 閱讀:254 作者:Leah 欄目:編程語言

使用UGU怎么調整Text中的字體間距?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class TextSpacingTest : BaseMeshEffect
{
 public float spacing = 0;
 public override void ModifyMesh(VertexHelper vh)
 {
  List<UIVertex> vertexs = new List<UIVertex>();
  vh.GetUIVertexStream(vertexs);
  int vertexIndexCount = vertexs.Count;
  for (int i = 6; i < vertexIndexCount; i++)
  {
   UIVertex v = vertexs[i];
   v.position += new Vector3(spacing * (i / 6), 0, 0);
   vertexs[i] = v;
   if (i % 6 <= 2)
   {
    vh.SetUIVertex(v, (i / 6) * 4 + i % 6);
   }
   if (i % 6 == 4)
   {
    vh.SetUIVertex(v, (i / 6) * 4 + i % 6 - 1);
   }
  }
 }
}

分析代碼:

1)首先創建一個字體間距的變量,然后需要繼承BaseMeshEffect類并且實現其中的抽象的方法MeshModify()函數。
2)創建一個容器從網格信息生成器vh中將字體的頂點信息全部加載保存下來
3)接下來開始遍歷獲取到的頂點,我們知道每個字體是由兩個三角形的組成的網格,字體是顯示在這樣的網格上的,因此每個字體也就對應6個頂點。那么就開始移動每個頂點就可以了。
4)移動頂點之后要記得設置UV頂點與頂點索引的對應關系,因為一個字體網格由兩個三角形組成,那么就重疊了兩個頂點,故而一個字體的6個頂點,就只對應4個UV頂點索引,如上代碼顯示的那樣。

分析如下:

使用UGU怎么調整Text中的字體間距

接下來看看比較復雜的情況:

文本的情況為,可以有多行,或單行,單行、多行時末尾均可以有換行符。

核心思路:

1)先考慮僅僅是多行且末尾行的末尾沒有換行符的情況,解決了這個核心問題,再考慮其他的問題。
2)將多行的文本按照換行符進行分割,這樣每一行就形成了一個字符串,此時對每一行進行上面簡單的操作,就可以實現移動的了。
3)考慮到所有的文本的頂點信息數據都存儲在vh中,可以創建一個行數據結構Line以此來存儲每行的基本屬性(比如:本行開始定點的索引位置,結束頂點的索引位置,所有頂點的數量)。
4)簡單多行的情況,利用上面的分行的思路就可以解決,接下來分析其他的問題。
5)單行時末尾有換行符,我們在分割字符串之后要加以判斷是否有空串的情況 ,若有那么就認為末尾產生了換行符,此時空串不再創建LIne對象,只用創建一個Line對象。解法看代碼。
6)多行時末尾有換行符,同樣用于上面一樣的方法進行檢驗,最后一個空串不在創建Line對象,解法看代碼。
7)之后若是想擴展修改字體垂直方向的間距也可以在此基礎上修改,非常簡單。

接下來看代碼:

using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using System.Collections.Generic;


internal class Line
{
 //每行開始頂點索引
 private int startVertexIndex;
 public int StartVertexIndex
 {
  get
  {
   return startVertexIndex;
  }
 }

 //每行結束頂點索引
 private int endVertexIndex;
 public int EndVertexIndex
 {
  get
  {
   return endVertexIndex;
  }
 }

 //每行頂點總量
 private int countVertexIndex;
 public int CountVertexIndex
 {
  get
  {
   return countVertexIndex;
  }
 }

 public Line(int startVertexIndex,int countVertexIndex)
 {
  this.startVertexIndex = startVertexIndex;
  this.countVertexIndex = countVertexIndex;
  this.endVertexIndex = this.startVertexIndex + countVertexIndex - 1;

 }
}

/// <summary>
/// 這是設置字體移動的核心類
/// 執行多重行移動的核心算法是:將多重行分開依次進行處理,每一行的處理都是前面對單行處理的子操作
/// 但是由vh是記錄一個文本中所有的字的頂點,所以說需要分清楚每行開始,每行結束,以及行的字個數,
/// 如此需要創建一個行的數據結構,以保存這些信息
/// </summary>
public class TextSpacingMulTest : BaseMeshEffect
{
 public float spacing = 0;
 public override void ModifyMesh(VertexHelper vh)
 {
  Text text = GetComponent<Text>();
  string[] ls = text.text.Split('\n');
  int length = ls.Length;
  bool isNewLine = false;
  Line[] line;
  if (string.IsNullOrEmpty(ls[ls.Length - 1]) == true)
  {
   line = new Line[length - 1];
   isNewLine = true;
  }
  else
  {
   line = new Line[length];
   
  }
  //Debug.Log("ls長度" + ls.Length);
  for (int i = 0; i < line.Length; i++)
  {
   if (i == 0 && line.Length == 1&&isNewLine==false)//解決單行時沒有換行符的情況
   {
    line[i] = new Line(0, ls[i].Length * 6);
    break;
   }
   if (i == 0&&line.Length>=1)//解決單行時有換行符的情況,以及多行時i為0的情況
   {
    line[i] = new Line(0, (ls[i].Length+1) * 6);
   }
   else
   {
    if (i < line.Length - 1)
    {
     line[i] = new Line(line[i - 1].EndVertexIndex + 1, (ls[i].Length + 1) * 6);
    }
    else
    {
     if (isNewLine == true)//解決多行時,最后一行末尾有換行符的情況
     {
      line[i] = new Line(line[i - 1].EndVertexIndex + 1, (ls[i].Length + 1) * 6);
     }
     else
     {
      line[i] = new Line(line[i - 1].EndVertexIndex + 1, ls[i].Length * 6);
     }
    }
   }
  }

  
  List<UIVertex> vertexs = new List<UIVertex>();
  vh.GetUIVertexStream(vertexs);
  int countVertexIndex = vertexs.Count;
  //Debug.Log("頂點總量" + vertexs.Count);
  for (int i = 0; i < line.Length; i++)
  {
   if (line[i].CountVertexIndex == 6) { continue; }
   for (int k = line[i].StartVertexIndex+6; k <= line[i].EndVertexIndex; k++)
   {
    UIVertex vertex = vertexs[k]; 
    vertex.position += new Vector3(spacing * ((k-line[i].StartVertexIndex) / 6), 0, 0);
    //Debug.Log("執行");
    vertexs[k] = vertex;
    if (k % 6 <= 2)
    {
     vh.SetUIVertex(vertex, (k / 6) * 4 + k % 6);
    }
    if (k % 6 == 4)
    {
     vh.SetUIVertex(vertex, (k / 6) * 4 + k % 6 - 1);
    }
   }

  }


 }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平顺县| 陆河县| 沙雅县| 白城市| 军事| 乌鲁木齐县| 镇原县| 类乌齐县| 南陵县| 绵阳市| 曲水县| 施秉县| 嘉禾县| 仁怀市| 株洲市| 贵州省| 伊川县| 临湘市| 兴山县| 榕江县| 丹巴县| 云阳县| 禄丰县| 福泉市| 新乡县| 慈溪市| 彩票| 水富县| 桃源县| 乌海市| 泾川县| 上思县| 新乐市| 息烽县| 平湖市| 罗平县| 淮南市| 临武县| 达尔| 绥滨县| 山东省|