using UnityEngine;
using UnityEngine.UI;
using System.Collections.Generic;
[ExecuteInEditMode]
public class VirticalText : BaseMeshEffect
{
[Tooltip("字和字之間的距離")]
public float spacing = 1;
private float lineSpacing = 1;
private float textSpacing = 1;
private float xOffset = 0;
private float yOffset = 0;
public override void ModifyMesh(VertexHelper helper)
{
if (!IsActive())
return;
List<UIVertex> verts = new List<UIVertex>();
helper.GetUIVertexStream(verts);
Text text = GetComponent<Text>();
TextGenerator tg = text.cachedTextGenerator;
lineSpacing = text.fontSize * text.lineSpacing;
textSpacing = text.fontSize * spacing;
xOffset = text.rectTransform.sizeDelta.x / 2 - text.fontSize / 2;
yOffset = text.rectTransform.sizeDelta.y / 2 - text.fontSize / 2;
List<UILineInfo> lines = new List<UILineInfo>();
tg.GetLines(lines);
for (int i = 0; i < lines.Count; i++)
{
UILineInfo line = lines[i];
int step = i;
if (i + 1 < lines.Count)
{
UILineInfo line2 = lines[i + 1];
int current = 0;
for (int j = line.startCharIdx; j < line2.startCharIdx - 1; j++)
{
modifyText(helper, j, current++, step);
}
}
else if (i + 1 == lines.Count)
{
int current = 0;
for (int j = line.startCharIdx; j < tg.characterCountVisible; j++)
{
modifyText(helper, j, current++, step);
}
}
}
}
void modifyText(VertexHelper helper, int i, int charYPos, int charXPos)
{
UIVertex lb = new UIVertex();
helper.PopulateUIVertex(ref lb, i * 4);
UIVertex lt = new UIVertex();
helper.PopulateUIVertex(ref lt, i * 4 + 1);
UIVertex rt = new UIVertex();
helper.PopulateUIVertex(ref rt, i * 4 + 2);
UIVertex rb = new UIVertex();
helper.PopulateUIVertex(ref rb, i * 4 + 3);
Vector3 center = Vector3.Lerp(lb.position, rt.position, 0.5f);
Matrix4x4 move = Matrix4x4.TRS(-center, Quaternion.identity, Vector3.one);
float x = -charXPos * lineSpacing + xOffset;
float y = -charYPos * textSpacing + yOffset;
Vector3 pos = new Vector3(x, y, 0);
Matrix4x4 place = Matrix4x4.TRS(pos, Quaternion.identity, Vector3.one);
Matrix4x4 transform = place * move;
lb.position = transform.MultiplyPoint(lb.position);
lt.position = transform.MultiplyPoint(lt.position);
rt.position = transform.MultiplyPoint(rt.position);
rb.position = transform.MultiplyPoint(rb.position);
helper.SetUIVertex(lb, i * 4);
helper.SetUIVertex(lt, i * 4 + 1);
helper.SetUIVertex(rt, i * 4 + 2);
helper.SetUIVertex(rb, i * 4 + 3);
}
}
unity的ugui中文豎排
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門闯两,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人谅将,你說我怎么就攤上這事漾狼。” “怎么了饥臂?”我有些...
- 文/不壞的土叔 我叫張陵逊躁,是天一觀的道長。 經(jīng)常有香客問我隅熙,道長稽煤,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任囚戚,我火速辦了婚禮酵熙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘驰坊。我一直安慰自己匾二,他們只是感情好,可當(dāng)我...
- 文/花漫 我一把揭開白布拳芙。 她就那樣靜靜地躺著察藐,像睡著了一般。 火紅的嫁衣襯著肌膚如雪舟扎。 梳的紋絲不亂的頭發(fā)上转培,一...
- 文/蒼蘭香墨 我猛地睜開眼顺囊,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了蕉拢?” 一聲冷哼從身側(cè)響起特碳,我...
- 正文 年R本政府宣布,位于F島的核電站靠汁,受9級特大地震影響蜂大,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜膀曾,卻給世界環(huán)境...
- 文/蒙蒙 一县爬、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧添谊,春花似錦财喳、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至所踊,卻和暖如春泌枪,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背秕岛。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 目前在unity實現(xiàn)圖文混排的好像都是通過自定義字體然后在文本獲取字符的位置,用圖片替換掉圖片標(biāo)簽灌具,這樣對于支持英...
- 寫在前面青团,最近在寫聊天系統(tǒng)譬巫,這里面就有一個很重要的環(huán)節(jié)就是表情與文字混排需要解決。前段時間有客戶說微信登錄督笆,有的人...
- 在text中需要空格的地方加入 縮進(jìn) 就可了,需要空幾格就將“縮進(jìn)”改為幾個字 https://www.yout...
- 自從魅族官方公布新旗艦PRO7的發(fā)布會時間為7月26日19點半之后,魅族PRO7的宣傳預(yù)熱也正式開始咸作,此前網(wǎng)上熱議...
- 前言: 最近在學(xué)習(xí)UGUI锨阿,在學(xué)習(xí)UGUI當(dāng)中的屏幕自適應(yīng)的時候出現(xiàn)了問題,搞的我很頭疼记罚,于是在網(wǎng)上查了很多資料墅诡,...