UI 丰富的文本 使用简单的标记标签来样式串在 bold, italics, underline, fill color, stroke variations 和更多。 您可以将 стиling 标签应用到 TextLabel , TextButton 和 1> Class.Toolbar1> 对象。
启用丰富的文本
您必须通过其 RichText 属性在 true 窗口中启用对象级别的 RichText,或通过将属性设置为 1> true1> 在 4>Class.LocalScript4> 中。
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)">橙色</font>andy。
大小
<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>1> 4> 7> 0> 3> 4> 7> 8> 0> 1> 4> 5> 6> 7> 8> 0> 1> 2> 3> 4> 5> 6> 7> 8> 9>
击球
<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>.
Underline
<u> </u>
Text <u>underlined</u>.
击中
set
有“<&%ri_tab%&> 划线的文本
行线间隔
<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...
逃离形式
如果您想要渲染特定角色,例如 < 或 > ,并将其从考虑到作为 rich text 标签的一部分来免除考虑,您可以在其 逃生形式 中写下它们。
角色 | 逃脱 | 例子 | 结果 |
---|---|---|---|
<) | < | 10 < 100 | 10 < 100 |
> | > | 100 > 10 | 100 > 10 |
“ | " | Meet "Diva Dragonslayer" | 见到 “Diva Dragonslayer” |
'...' | ' | Diva's pet is a falcon! | Diva 的宠物是一只猎鹰! |
& | & | Render another escape form <b>&lt;</b> by escaping an ampersand | 通过逃离另一个逃生形式 < 来逃离一个 ampersand |