UI rich text utilizza semplici tag di markup per stilare sezioni di una stringa in grassetto, in grassetto, in sottolineato, in colore e in variazione di colore. Puoi applicare tag di stilazione a TextLabel , TextButton e 1> Class.Toolbar1> oggetti.
Abilitare il testo ricco
Devi abilitare il testo ricco su base per oggetto attraverso la sua proprietà RichText nella finestra Proprietà, o impostando la proprietà su true in un 2> Class.LocalScript2> .
local title = Instance.new("TextLabel")title.RichText = truetitle.Text = "Use a <b>bold title</b>"
Tag supportati
I tag di testo ricco sono simili ai tag di XML/HTML e devi includere sia un tag di apertura che di chiusura intorno al testo formattato.
<b>Formatted Text</b>
Puoi anche annidare i tag l'uno dentro l'altro a patto che li chiudi nell'ordine in cui sono stati aperti.
<b><i><u>Formatted Text</u></i></b>
Colore
<font color=""> </font>
I want the <font color="#FF7800">orange</font> candy.``I want the <font color="rgb(255,125,0)">orange</font> candy.
Dimensione
<font size=""> </font>
<font size="40">This is big.</font> <font size="20">This is small.</font>
Faccia del carattere
<font face=""> </font>
<font face="Michroma">This is Michroma face.</font>
Famiglia di caratteri
<font family=""> </font>
<font family="rbxasset://fonts/families/Michroma.json">This is Michroma face.</font>
Peso della font
<font weight=""> </font>
This is normal. <font weight="heavy">This is heavy.</font>``This is normal. <font weight="900">This is heavy.</font>
Attacco
<stroke> </stroke>
You won <stroke color="#00A2FF" joins="miter" thickness="2" transparency="0.25">25 gems</stroke>.
Trasparenza
<font transparency=""> </font>
Text at <font transparency="0.5">50% transparency</font>.
Bold
<b> </b>
Text in <b>bold</b>.
Italico
<i> </i>
Text <i>italicized</i>.
Sottolinea
<u> </u>
Text <u>underlined</u>.
Colpire attraverso
Text with strikethrough
Linea di separazione
<br />
New line occurs after this sentence.<br />Next sentence...
Casuscolo in alto
<uppercase> </uppercase>``<uc> </uc>
<uppercase>Uppercase</uppercase> makes words read loudly! <uc>Uppercase</uc> rende le parole leggere forte!
Piccole Caps
<smallcaps> </smallcaps>``<sc> </sc>
My name is <smallcaps>Diva Dragonslayer</smallcaps>. My name is <sc>Diva Dragonslayer</sc>.
Commento
<!-- -->
After this is a comment...<!--This does not appear in the final text--> and now more text...
Forme di fuga
Se vuoi rendere alcuni personaggi come < o > e esentarli dalla considerazione come parte dei tag di testo ricchi, puoi scriverli nella loro forma di fuga .
Personaggio | Scappare | Esempio | Risultato |
---|---|---|---|
< | < | 10 < 100 ]] | 10 < 100 |
> | > | 100 > 10 | 100 > 10 |
" «1» | " | Meet "Diva Dragonslayer" | Incontra "Diva Dragonslayer" |
' | ' | Diva's pet is a falcon! | L'animale domestico di Diva è un falco! |
& | & | Render another escape form <b>&lt;</b> by escaping an ampersand | Render another escape form < escaping un amper |