UI rich text 使用簡單的標記標籤來格式化字串的大纂體、義大利體、下線、填色、塗鴉變化和更多。您可以應用標記標籤到 TextLabel、TextButton 和 1>Class.Toolbar1> 對象。
啟用 Rich 文字
您必須通過其 RichText 屬性在 屬性 窗口中啟用針對對象的豐富文字,或將屬性設置為 true 在 1> Class.LocalScript1> 中。
local title = Instance.new("TextLabel")title.RichText = truetitle.Text = "Use a <b>bold title</b>"
支援的標籤
富有文字標籤與 XML/HTML 標籤相似,您必須在格式文字中包含開始和關閉標籤。
<b>Formatted Text</b>
您也可以在標籤之間巧妙地重疊,以反向順序關閉它們。
<b><i><u>Formatted Text</u></i></b>
顏色
<font color=""> </font>
I want the <font color="#FF7800">orange</font> candy. I want the <font color="rgb(255,125,0)">orange</font> candy.
大小
<font size=""> </font>
<font size="40">This is big.</font> <font size="20">This is small.</font>
字體面
<font face=""> </font>
<font face="Michroma">This is Michroma face.</font>
字體家族
<font family=""> </font>
<font family="rbxasset://fonts/families/Michroma.json">This is Michroma face.</font>
字體重量
<font weight=""> </font>
This is normal. <font weight="heavy">This is heavy.</font> This is normal. <font weight="900">This is heavy.</font>
撇抹
<stroke> </stroke>
You won <stroke color="#00A2FF" joins="miter" thickness="2" transparency="0.25">25 gems</stroke>.
透明度
<font transparency=""> </font>
Text at <font transparency="0.5">50% transparency</font>.
大膽
<b> </b>
Text in <b>bold</b>.
義大利文
<i> </i>
Text <i>italicized</i>.
標記
<u> </u>
Text <u>underlined</u>.
斯特里克斯通
Text with strikethrough
線路中斷
<br />
New line occurs after this sentence.<br />Next sentence...
大寫
<uppercase> </uppercase> <uc> </uc>
<uppercase>Uppercase</uppercase> makes words read loudly!``<uc>Uppercase</uc> makes words read loudly!
小帽子
<smallcaps> </smallcaps> <sc> </sc>
My name is <smallcaps>Diva Dragonslayer</smallcaps>.``My name is <sc>Diva Dragonslayer</sc>.
評論
<!-- -->
After this is a comment...<!--This does not appear in the final text--> and now more text...
逃離形式
如果您想要渲染某些角色,例如 < 或 > 並將其從考慮作為屬於豐富文字標籤的一部分,您可以在他們的 逃脫形式 中寫下它們。
角色 | 逃脫 | 範例 | 結果 |
---|---|---|---|
< | < | 10 < 100 | 10 < 100 |
> | > | 100 > 10 | 100 > 10 |
“ | " | Meet "Diva Dragonslayer" | 見到「戲女龍屠者」 |
' ] | ' | Diva's pet is a falcon! | 迪瓦的寵物是一隻隼! |
和 | & | Render another escape form <b>&lt;</b> by escaping an ampersand | 以逃生另一個逃生形式 < 由逃生安普雷素 |