UI 부드러운 텍스트 는 간단한 마크업 태그를 사용하여 문자열의 섹션을 벽돌, 골드, 하이푸, 채우기 색, 스트로크 변형 및 더 많은 것을 스타일로 지정할 수 있습니다. 스타일 태그를 적용할 수 있습니다 Class
풍부한 텍스트 활성화
속성 창에 있는 그것의 풍부한 텍스트 속성을 통해 개체 기반의 풍부한 텍스트를 활성화해야 하거나, Class.LocalScript 에 속성을 true로 설정하여 개체 기반의 풍부한 텍스트를 활성화해야 합니다.
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> 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 Dragonslayer”를 만나세요 |
'. | ' | Diva's pet is a falcon! | Diva의 펫은 까마귀입니다! |
& | & | Render another escape form <b>&lt;</b> by escaping an ampersand | 다른 탈출 형태를 다시 렌더하려면 < 에서 ampersand를 탈출하십시오 |