UI teks kaya menggunakan tag pemasaran sederhana untuk menyederkan bagian dari string dalam huruf besar, italik, underline, warnai, variasi gaya, dan banyak lagi. Anda dapat menerapkan tag pemasaran ke objek TextLabel , TextButton , dan 1> Class.Toolbar1> .
Mengaktifkan Teks Kaya
Anda harus mengaktifkan teks berisi di per-objek basis melalui propertinya RichText di jendela Properties atau dengan menetapkan properti menjadi true di jendela 1> Class.LocalScript1> .
local title = Instance.new("TextLabel")title.RichText = truetitle.Text = "Use a <b>bold title</b>"
Tag Dukungan
Label teks kaya mirip dengan tag XML/HTML dan Anda harus meng包括 tag pembukaan dan penutupan di sekitar teks yang dibentuk.
<b>Formatted Text</b>
Anda juga dapat menyebutkan label di dalam satu sama lain asalkan Anda menutupnya dalam urutanbalik seperti Anda membukanya.
<b><i><u>Formatted Text</u></i></b>
Warna
<font color=""> </font>
I want the <font color="#FF7800">orange</font> candy. I want the <font color="rgb(255,125,0)">orange</font> candy.
Ukuran
<font size=""> </font>
<font size="40">This is big.</font> <font size="20">This is small.</font>
Wajah Huruf
<font face=""> </font>
<font face="Michroma">This is Michroma face.</font>
Keluarga Karakter
<font family=""> </font>
<font family="rbxasset://fonts/families/Michroma.json">This is Michroma face.</font>
Berat Huruf
<font weight=""> </font>
This is normal. <font weight="heavy">This is heavy.</font>``This is normal. <font weight="900">This is heavy.</font>
Menus
<stroke> </stroke>
You won <stroke color="#00A2FF" joins="miter" thickness="2" transparency="0.25">25 gems</stroke>.
Transparansi
<font transparency=""> </font>
Text at <font transparency="0.5">50% transparency</font>.
Bold
<b> </b>
Text in <b>bold</b>.
Italik
<i> </i>
Text <i>italicized</i>.
Tanda Bawah
<u> </u>
Text <u>underlined</u>.
Terbang Melalui
Text dengan strikethrough
Pemecahan Baris
<br />
New line occurs after this sentence.<br />Next sentence...
Kasus Besar
<uppercase> </uppercase>``<uc> </uc>
<uppercase>Uppercase</uppercase> makes words read loudly!
Topi Kecil
<smallcaps> </smallcaps>``<sc> </sc>
My name is <smallcaps>Diva Dragonslayer</smallcaps>. Nama saya adalah <sc>Diva Dragonslayer</sc>.
Komentar
<!-- -->
After this is a comment...<!--This does not appear in the final text--> and now more text...
Bentuk Pelarian
Jika Anda ingin menyelesaikan karakter tertentu seperti < atau > dan mengecualikan mereka dari pertimbangan sebagai bagian dari tag teks kaya, Anda dapat menulisnya dalam bentuk pelarian mereka .
Karakter | Kabur | Contoh | Hasil |
---|---|---|---|
< | < | 10 < 100 | 10 < 100 |
> | > | 100 > 10 | 100 > 10 |
") | " | Meet "Diva Dragonslayer" | Bertemu "Diva Dragonslayer" |
' | ' | Diva's pet is a falcon! | Hewan peliharaan Diva adalah gagak! |
& | & | Render another escape form <b>&lt;</b> by escaping an ampersand | Render another escape form < dengan melarikan diri dari amper |