bbcode_in_richtextlabel.rst 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150
  1. .. _doc_bbcode_in_richtextlabel:
  2. BBCode in RichTextLabel
  3. =======================
  4. Introduction
  5. ------------
  6. :ref:`class_Label` nodes are great for displaying basic text, but they have limitations.
  7. If you want to change the color of the text, or its alignment, you can only do that to
  8. the entire label. You can't make a part of the text have another color, or have a part
  9. of the text centered. To get around these limitations, you would use a :ref:`class_RichTextLabel`.
  10. :ref:`class_RichTextLabel` allows for complex formatting of text using a markup syntax or
  11. the built-in API. It uses BBCodes for the markup syntax, a system of tags that designate
  12. formatting rules for a part of the text. You may be familiar with them if you ever used
  13. forums (also known as `bulletin boards`, hence the "BB" in "BBCode").
  14. Unlike Label, RichTextLabel also comes with its own vertical scrollbar. This
  15. scrollbar is automatically displayed if the text does not fit within the
  16. control's size. The scrollbar can be disabled by unchecking the
  17. **Scroll Active** property in the RichTextLabel inspector.
  18. Note that the BBCode tags can also be used to some extent in the XML source of
  19. the class reference. For more information, see :ref:`doc_class_reference_primer`.
  20. .. seealso::
  21. You can see how BBCode in RichTextLabel works in action using the
  22. `Rich Text Label with BBCode demo project <https://github.com/godotengine/godot-demo-projects/tree/master/gui/rich_text_bbcode>`__.
  23. Using BBCode
  24. ------------
  25. By default, :ref:`class_RichTextLabel` functions like a normal :ref:`class_Label`.
  26. It has the :ref:`property_text <class_RichTextLabel_property_text>` property, which you can
  27. edit to have uniformly formatted text. To be able to use BBCode for rich text formatting,
  28. you need to turn on the BBCode mode by setting :ref:`bbcode_enabled <class_RichTextLabel_property_bbcode_enabled>`.
  29. After that, you can edit the :ref:`text <class_RichTextLabel_property_text>`
  30. property using available tags. Both properties are located at the top of the inspector
  31. after selecting a RichTextLabel node.
  32. .. image:: img/bbcode_in_richtextlabel_inspector.webp
  33. For example, ``BBCode [color=green]test[/color]`` would render the word "test" with
  34. a green color.
  35. .. image:: img/bbcode_in_richtextlabel_basic_example.webp
  36. Most BBCodes consist of 3 parts: the opening tag, the content and the closing
  37. tag. The opening tag delimits the start of the formatted part, and can also
  38. carry some configuration options. Some opening tags, like the ``color`` one
  39. shown above, also require a value to work. Other opening tags may accept
  40. multiple options (separated by spaces within the opening tag). The closing tag
  41. delimits the end of the formatted part. In some cases, both the closing tag and
  42. the content can be omitted.
  43. Unlike BBCode in HTML, leading/trailing whitespace is not removed by a
  44. RichTextLabel upon display. Duplicate spaces are also displayed as-is in the
  45. final output. This means that when displaying a code block in a RichTextLabel,
  46. you don't need to use a preformatted text tag.
  47. .. code-block:: none
  48. [tag]content[/tag]
  49. [tag=value]content[/tag]
  50. [tag option1=value1 option2=value2]content[/tag]
  51. [tag][/tag]
  52. [tag]
  53. .. note::
  54. RichTextLabel doesn't support entangled BBCode tags. For example, instead of
  55. using:
  56. ::
  57. [b]bold[i]bold italic[/b]italic[/i]
  58. Use:
  59. ::
  60. [b]bold[i]bold italic[/i][/b][i]italic[/i]
  61. .. _doc_bbcode_in_richtextlabel_handling_user_input_safely:
  62. Handling user input safely
  63. --------------------------
  64. In a scenario where users may freely input text (such as chat in a multiplayer
  65. game), you should make sure users cannot use arbitrary BBCode tags that will be
  66. parsed by RichTextLabel. This is to avoid inappropriate use of formatting, which
  67. can be problematic if ``[url]`` tags are handled by your RichTextLabel (as players
  68. may be able to create clickable links to phishing sites or similar).
  69. Using RichTextLabel's ``[lb]`` and/or ``[rb]`` tags, we can replace the opening and/or
  70. closing brackets of any BBCode tag in a message with those escaped tags. This
  71. prevents users from using BBCode that will be parsed as tags – instead, the
  72. BBCode will be displayed as text.
  73. .. figure:: img/bbcode_in_richtextlabel_escaping_user_input.webp
  74. :align: center
  75. :alt: Example of unescaped user input resulting in BBCode injection (2nd line) and escaped user input (3rd line)
  76. Example of unescaped user input resulting in BBCode injection (2nd line) and escaped user input (3rd line)
  77. The above image was created using the following script:
  78. ::
  79. extends RichTextLabel
  80. func _ready():
  81. append_chat_line("Player 1", "Hello world!")
  82. append_chat_line("Player 2", "Hello [color=red]BBCode injection[/color] (no escaping)!")
  83. append_chat_line_escaped("Player 2", "Hello [color=red]BBCode injection[/color] (with escaping)!")
  84. # Returns escaped BBCode that won't be parsed by RichTextLabel as tags.
  85. func escape_bbcode(bbcode_text):
  86. # We only need to replace opening brackets to prevent tags from being parsed.
  87. return bbcode_text.replace("[", "[lb]")
  88. # Appends the user's message as-is, without escaping. This is dangerous!
  89. func append_chat_line(username, message):
  90. append_text("%s: [color=green]%s[/color]\n" % [username, message])
  91. # Appends the user's message with escaping.
  92. # Remember to escape both the player name and message contents.
  93. func append_chat_line_escaped(username, message):
  94. append_text("%s: [color=green]%s[/color]\n" % [escape_bbcode(username), escape_bbcode(message)])
  95. Stripping BBCode tags
  96. ---------------------
  97. For certain use cases, it can be desired to remove BBCode tags from the string.
  98. This is useful when displaying the RichTextLabel's text in another Control that
  99. does not support BBCode (such as a tooltip):
  100. .. code::
  101. extends RichTextLabel
  102. func _ready():
  103. var regex = RegEx.new()
  104. regex.compile("\\[.*?\\]")
  105. var text_without_tags = regex.sub(text, "", true)
  106. # `text_without_tags` contains the text with all BBCode tags removed.
  107. .. note::
  108. Removing BBCode tags entirely isn't advised for user input, as it can
  109. modify the displayed text without users understanding why part of their
  110. message was removed.
  111. :ref:`Escaping user input <doc_bbcode_in_richtextlabel_handling_user_input_safely>`
  112. should be preferred instead.
  113. Performance
  114. -----------
  115. In most cases, you can use BBCode directly as-is since text formatting is rarely
  116. a heavy task. However, with particularly large RichTextLabels (such as console
  117. logs spanning thousands of lines), you may encounter stuttering during gameplay
  118. when the RichTextLabel's text is updated.
  119. There are several ways to alleviate this:
  120. - Use the ``append_text()`` function instead of appending to the ``text``
  121. property. This function will only parse BBCode for the added text, rather than
  122. parsing BBCode from the entire ``text`` property.
  123. - Use ``push_[tag]()`` and ``pop()`` functions to add tags to RichTextLabel instead of
  124. using BBCode.
  125. - Enable the **Threading > Threaded** property in RichTextLabel. This won't
  126. speed up processing, but it will prevent the main thread from blocking, which
  127. avoids stuttering during gameplay. Only enable threading if it's actually
  128. needed in your project, as threading has some overhead.
  129. .. _doc_bbcode_in_richtextlabel_use_functions:
  130. Using push_[tag]() and pop() functions instead of BBCode
  131. --------------------------------------------------------
  132. If you don't want to use BBCode for performance reasons, you can use functions
  133. provided by RichTextLabel to create formatting tags without writing BBCode in
  134. the text.
  135. Every BBCode tag (including effects) has a ``push_[tag]()`` function (where
  136. ``[tag]`` is the tag's name). There are also a few convenience functions
  137. available, such as ``push_bold_italics()`` that combines both ``push_bold()``
  138. and ``push_italics()`` into a single tag. See the
  139. :ref:`RichTextLabel class reference <class_RichTextLabel>` for a complete list of
  140. ``push_[tag]()`` functions.
  141. The ``pop()`` function is used to end *any* tag. Since BBCode is a tag *stack*,
  142. using ``pop()`` will close the most recently started tags first.
  143. The following script will result in the same visual output as using
  144. ``BBCode [color=green]test [i]example[/i][/color]``:
  145. ::
  146. extends RichTextLabel
  147. func _ready():
  148. append_text("BBCode ") # Trailing space separates words from each other.
  149. push_color(Color.GREEN)
  150. append_text("test ") # Trailing space separates words from each other.
  151. push_italics()
  152. append_text("example")
  153. pop() # Ends the tag opened by `push_italics()`.
  154. pop() # Ends the tag opened by `push_color()`.
  155. .. warning::
  156. Do **not** set the ``text`` property directly when using formatting functions.
  157. Appending to the ``text`` property will erase all modifications made to the
  158. RichTextLabel using the ``append_text()``, ``push_[tag]()`` and ``pop()``
  159. functions.
  160. Reference
  161. ---------
  162. .. seealso::
  163. *Some* of these BBCode tags can be used in tooltips for ``@export`` script
  164. variables as well as in the XML source of the class reference. For more
  165. information, see :ref:`Class reference BBCode <doc_class_reference_bbcode>`.
  166. .. list-table::
  167. :class: wrap-normal
  168. :width: 100%
  169. :widths: 60 40
  170. * - Tag
  171. - Example
  172. * - | **b**
  173. | Makes ``{text}`` use the bold (or bold italics) font of ``RichTextLabel``.
  174. - ``[b]{text}[/b]``
  175. * - | **i**
  176. | Makes ``{text}`` use the italics (or bold italics) font of ``RichTextLabel``.
  177. - ``[i]{text}[/i]``
  178. * - | **u**
  179. | Makes ``{text}`` underlined.
  180. - ``[u]{text}[/u]``
  181. * - | **s**
  182. | Makes ``{text}`` strikethrough.
  183. - ``[s]{text}[/s]``
  184. * - | **code**
  185. | Makes ``{text}`` use the mono font of ``RichTextLabel``.
  186. - ``[code]{text}[/code]``
  187. * - | **char**
  188. | Adds Unicode character with hexadecimal UTF-32 ``{codepoint}``.
  189. - ``[char={codepoint}]``
  190. * - | **p**
  191. | Adds new paragraph with ``{text}``. Supports configuration options,
  192. see :ref:`doc_bbcode_in_richtextlabel_paragraph_options`.
  193. - | ``[p]{text}[/p]``
  194. | ``[p {options}]{text}[/p]``
  195. * - | **center**
  196. | Makes ``{text}`` horizontally centered.
  197. | Same as ``[p align=center]``.
  198. - ``[center]{text}[/center]``
  199. * - | **left**
  200. | Makes ``{text}`` horizontally left-aligned.
  201. | Same as ``[p align=left]``.
  202. - ``[left]{text}[/left]``
  203. * - | **right**
  204. | Makes ``{text}`` horizontally right-aligned.
  205. | Same as ``[p align=right]``.
  206. - ``[right]{text}[/right]``
  207. * - | **fill**
  208. | Makes ``{text}`` fill the full width of ``RichTextLabel``.
  209. | Same as ``[p align=fill]``.
  210. - ``[fill]{text}[/fill]``
  211. * - | **indent**
  212. | Indents ``{text}`` once.
  213. The indentation width is the same as with ``[ul]`` or ``[ol]``, but without a bullet point.
  214. - ``[indent]{text}[/indent]``
  215. * - | **url**
  216. | Creates a hyperlink (underlined and clickable text). Can contain optional
  217. ``{text}`` or display ``{link}`` as is.
  218. | **Must be handled with the "meta_clicked" signal to have an effect,** see :ref:`doc_bbcode_in_richtextlabel_handling_url_tag_clicks`.
  219. - | ``[url]{link}[/url]``
  220. | ``[url={link}]{text}[/url]``
  221. * - | **hint**
  222. | Creates a tooltip hint that is displayed when hovering the text with the mouse.
  223. Tooltip text should not be quoted (quotes will appear as-is in the tooltip otherwise).
  224. - | ``[hint={tooltip text displayed on hover}]{text}[/hint]``
  225. * - | **img**
  226. | Inserts an image from the ``{path}`` (can be any valid :ref:`class_Texture2D` resource).
  227. | If ``{width}`` is provided, the image will try to fit that width maintaining
  228. the aspect ratio.
  229. | If both ``{width}`` and ``{height}`` are provided, the image will be scaled
  230. to that size.
  231. | Add ``%`` to the end of ``{width}`` or ``{height}`` value to specify it as percentages of the control width instead of pixels.
  232. | If ``{valign}`` configuration is provided, the image will try to align to the
  233. surrounding text, see :ref:`doc_bbcode_in_richtextlabel_image_and_table_alignment`.
  234. | Supports configuration options, see :ref:`doc_bbcode_in_richtextlabel_image_options`.
  235. - | ``[img]{path}[/img]``
  236. | ``[img={width}]{path}[/img]``
  237. | ``[img={width}x{height}]{path}[/img]``
  238. | ``[img={valign}]{path}[/img]``
  239. | ``[img {options}]{path}[/img]``
  240. * - | **font**
  241. | Makes ``{text}`` use a font resource from the ``{path}``.
  242. | Supports configuration options, see :ref:`doc_bbcode_in_richtextlabel_font_options`.
  243. - | ``[font={path}]{text}[/font]``
  244. | ``[font {options}]{text}[/font]``
  245. * - | **font_size**
  246. | Use custom font size for ``{text}``.
  247. - ``[font_size={size}]{text}[/font_size]``
  248. * - | **dropcap**
  249. | Use a different font size and color for ``{text}``, while making the tag's contents
  250. span multiple lines if it's large enough.
  251. | A `drop cap <https://www.computerhope.com/jargon/d/dropcap.htm>`__ is typically one
  252. uppercase character, but ``[dropcap]`` supports containing multiple characters.
  253. ``margins`` values are comma-separated and can be positive, zero or negative.
  254. Negative top and bottom margins are particularly useful to allow the rest of
  255. the paragraph to display below the dropcap.
  256. - ``[dropcap font={font} font_size={size} color={color} outline_size={size} outline_color={color} margins={left},{top},{right},{bottom}]{text}[/dropcap]``
  257. * - | **opentype_features**
  258. | Enables custom OpenType font features for ``{text}``. Features must be provided as
  259. a comma-separated ``{list}``.
  260. - | ``[opentype_features={list}]``
  261. | ``{text}``
  262. | ``[/opentype_features]``
  263. * - | **lang**
  264. | Overrides the language for ``{text}`` that is set by the **BiDi > Language** property
  265. in :ref:`class_RichTextLabel`. ``{code}`` must be an ISO :ref:`language code <doc_locales>`.
  266. This can be used to enforce the use of a specific script for a language without
  267. starting a new paragraph. Some font files may contain script-specific substitutes,
  268. in which case they will be used.
  269. - ``[lang={code}]{text}[/lang]``
  270. * - | **color**
  271. | Changes the color of ``{text}``. Color must be provided by a common name (see
  272. :ref:`doc_bbcode_in_richtextlabel_named_colors`) or using the HEX format (e.g.
  273. ``#ff00ff``, see :ref:`doc_bbcode_in_richtextlabel_hex_colors`).
  274. - ``[color={code/name}]{text}[/color]``
  275. * - | **bgcolor**
  276. | Draws the color behind ``{text}``. This can be used to highlight text.
  277. Accepts same values as the ``color`` tag.
  278. - ``[bgcolor={code/name}]{text}[/bgcolor]``
  279. * - | **fgcolor**
  280. | Draws the color in front of ``{text}``. This can be used to "redact" text by using
  281. an opaque foreground color. Accepts same values as the ``color`` tag.
  282. - ``[fgcolor={code/name}]{text}[/fgcolor]``
  283. * - | **outline_size**
  284. | Use custom font outline size for ``{text}``.
  285. - | ``[outline_size={size}]``
  286. | ``{text}``
  287. | ``[/outline_size]``
  288. * - | **outline_color**
  289. | Use custom outline color for ``{text}``. Accepts same values as the ``color`` tag.
  290. - | ``[outline_color={code/name}]``
  291. | ``{text}``
  292. | ``[/outline_color]``
  293. * - | **table**
  294. | Creates a table with the ``{number}`` of columns. Use the ``cell`` tag to define
  295. table cells.
  296. | If ``{valign}`` configuration is provided, the table will try to align to the
  297. surrounding text, see :ref:`doc_bbcode_in_richtextlabel_image_and_table_alignment`.
  298. | If baseline alignment is used, the table is aligned to the baseline of the row with index ``{alignment_row}`` (zero-based).
  299. - | ``[table={number}]{cells}[/table]``
  300. | ``[table={number},{valign}]{cells}[/table]``
  301. | ``[table={number},{valign},{alignment_row}]{cells}[/table]``
  302. * - | **cell**
  303. | Adds a cell with ``{text}`` to the table.
  304. | If ``{ratio}`` is provided, the cell will try to expand to that value proportionally
  305. to other cells and their ratio values.
  306. | Supports configuration options, see :ref:`doc_bbcode_in_richtextlabel_cell_options`.
  307. - | ``[cell]{text}[/cell]``
  308. | ``[cell={ratio}]{text}[/cell]``
  309. | ``[cell {options}]{text}[/cell]``
  310. * - | **ul**
  311. | Adds an unordered list. List ``{items}`` must be provided by putting one item per
  312. line of text.
  313. | The bullet point can be customized using the ``{bullet}`` parameter,
  314. see :ref:`doc_bbcode_in_richtextlabel_unordered_list_bullet`.
  315. - | ``[ul]{items}[/ul]``
  316. | ``[ul bullet={bullet}]{items}[/ul]``
  317. * - | **ol**
  318. | Adds an ordered (numbered) list of the given ``{type}`` (see :ref:`doc_bbcode_in_richtextlabel_list_types`).
  319. List ``{items}`` must be provided by putting one item per line of text.
  320. - ``[ol type={type}]{items}[/ol]``
  321. * - | **lb**, **rb**
  322. | Adds ``[`` and ``]`` respectively. Allows escaping BBCode markup.
  323. | These are self-closing tags, which means you do not need to close them
  324. (and there is no ``[/lb]`` or ``[/rb]`` closing tag).
  325. - | ``[lb]b[rb]text[lb]/b[rb]`` will display as ``[b]text[/b]``.
  326. * - | Several Unicode control characters can be added using their own self-closing tags.
  327. | This can result in easier maintenance compared to pasting those
  328. | control characters directly in the text.
  329. - | ``[lrm]`` (left-to-right mark), ``[rlm]`` (right-to-left mark), ``[lre]`` (left-to-right embedding),
  330. | ``[rle]`` (right-to-left embedding), ``[lro]`` (left-to-right override), ``[rlo]`` (right-to-left override),
  331. | ``[pdf]`` (pop directional formatting), ``[alm]`` (Arabic letter mark), ``[lri]`` (left-to-right isolate),
  332. | ``[rli]`` (right-to-left isolate), ``[fsi]`` (first strong isolate), ``[pdi]`` (pop directional isolate),
  333. | ``[zwj]`` (zero-width joiner), ``[zwnj]`` (zero-width non-joiner), ``[wj]`` (word joiner),
  334. | ``[shy]`` (soft hyphen)
  335. .. note::
  336. Tags for bold (``[b]``) and italics (``[i]``) formatting work best if the
  337. appropriate custom fonts are set up in the RichTextLabelNode's theme
  338. overrides. If no custom bold or italic fonts are defined,
  339. `faux bold and italic fonts <https://fonts.google.com/knowledge/glossary/faux_fake_pseudo_synthesized>`__
  340. will be generated by Godot. These fonts rarely look good in comparison to hand-made bold/italic font variants.
  341. The monospaced (``[code]``) tag **only** works if a custom font is set up in
  342. the RichTextLabel node's theme overrides. Otherwise, monospaced text will use the regular font.
  343. There are no BBCode tags to control vertical centering of text yet.
  344. Options can be skipped for all tags.
  345. .. _doc_bbcode_in_richtextlabel_paragraph_options:
  346. Paragraph options
  347. ~~~~~~~~~~~~~~~~~
  348. - **align**
  349. +-----------+----------------------------------------------------------------------------------------+
  350. | `Values` | ``left`` (or ``l``), ``center`` (or ``c``), ``right`` (or ``r``), ``fill`` (or ``f``) |
  351. +-----------+----------------------------------------------------------------------------------------+
  352. | `Default` | ``left`` |
  353. +-----------+----------------------------------------------------------------------------------------+
  354. Text horizontal alignment.
  355. - **bidi_override**, **st**
  356. +-----------+--------------------------------------------------------------------------------------------------------------+
  357. | `Values` | ``default`` (of ``d``), ``uri`` (or ``u``), ``file`` (or ``f``), ``email`` (or ``e``), ``list`` (or ``l``), |
  358. | | ``none`` (or ``n``), ``custom`` (or ``c``) |
  359. +-----------+--------------------------------------------------------------------------------------------------------------+
  360. | `Default` | ``default`` |
  361. +-----------+--------------------------------------------------------------------------------------------------------------+
  362. Structured text override.
  363. - **justification_flags**, **jst**
  364. +-----------+--------------------------------------------------------------------------------------------------------+
  365. | `Values` | Comma-separated list of the following values: |
  366. | | ``kashida`` (or ``k``), ``word`` (or ``w``), ``trim`` (or ``tr``), ``after_last_tab`` (or ``lt``), |
  367. | | ``skip_last`` (or ``sl``), ``skip_last_with_chars`` (or ``sv``), ``do_not_skip_single`` (or ``ns``). |
  368. +-----------+--------------------------------------------------------------------------------------------------------+
  369. | `Default` | ``word,kashida,skip_last,do_not_skip_single`` |
  370. +-----------+--------------------------------------------------------------------------------------------------------+
  371. Justification (fill alignment) option. See :ref:`class_TextServer` for more details.
  372. - **direction**, **dir**
  373. +-----------+-----------------------------------------------------------------+
  374. | `Values` | ``ltr`` (or ``l``), ``rtl`` (or ``r``), ``auto`` (or ``a``) |
  375. +-----------+-----------------------------------------------------------------+
  376. | `Default` | Inherit |
  377. +-----------+-----------------------------------------------------------------+
  378. Base BiDi direction.
  379. - **language**, **lang**
  380. +-----------+--------------------------------------------+
  381. | `Values` | ISO language codes. See :ref:`doc_locales` |
  382. +-----------+--------------------------------------------+
  383. | `Default` | Inherit |
  384. +-----------+--------------------------------------------+
  385. Locale override. Some font files may contain script-specific substitutes, in which case they will be used.
  386. - **tab_stops**
  387. +-----------+----------------------------------------------------+
  388. | `Values` | List of floating-point numbers, e.g. ``10.0,30.0`` |
  389. +-----------+----------------------------------------------------+
  390. | `Default` | Width of the space character in the font |
  391. +-----------+----------------------------------------------------+
  392. Overrides the horizontal offsets for each tab character. When the end of the
  393. list is reached, the tab stops will loop over. For example, if you set
  394. ``tab_stops`` to ``10.0,30.0``, the first tab will be at ``10`` pixels, the
  395. second tab will be at ``10 + 30 = 40`` pixels, and the third tab will be at
  396. ``10 + 30 + 10 = 50`` pixels from the origin of the RichTextLabel.
  397. .. _doc_bbcode_in_richtextlabel_handling_url_tag_clicks:
  398. Handling ``[url]`` tag clicks
  399. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  400. By default, ``[url]`` tags do nothing when clicked. This is to allow flexible use
  401. of ``[url]`` tags rather than limiting them to opening URLs in a web browser.
  402. To handle clicked ``[url]`` tags, connect the ``RichTextLabel`` node's
  403. :ref:`meta_clicked <class_RichTextLabel_signal_meta_clicked>` signal to a script function.
  404. For example, the following method can be connected to ``meta_clicked`` to open
  405. clicked URLs using the user's default web browser::
  406. # This assumes RichTextLabel's `meta_clicked` signal was connected to
  407. # the function below using the signal connection dialog.
  408. func _richtextlabel_on_meta_clicked(meta):
  409. # `meta` is not guaranteed to be a String, so convert it to a String
  410. # to avoid script errors at run-time.
  411. OS.shell_open(str(meta))
  412. For more advanced use cases, it's also possible to store JSON in an ``[url]``
  413. tag's option and parse it in the function that handles the ``meta_clicked`` signal.
  414. For example:
  415. .. code-block:: none
  416. [url={"example": "value"}]JSON[/url]
  417. .. _doc_bbcode_in_richtextlabel_image_options:
  418. Image options
  419. ~~~~~~~~~~~~~
  420. - **color**
  421. +-----------+--------------------------------------------+
  422. | `Values` | Color name or color in HEX format |
  423. +-----------+--------------------------------------------+
  424. | `Default` | Inherit |
  425. +-----------+--------------------------------------------+
  426. Color tint of the image (modulation).
  427. - **height**
  428. +-----------+--------------------------------------------+
  429. | `Values` | Integer number |
  430. +-----------+--------------------------------------------+
  431. | `Default` | Inherit |
  432. +-----------+--------------------------------------------+
  433. Target height of the image in pixels, add ``%`` to the end of value to specify it as percentages of the control width instead of pixels.
  434. - **width**
  435. +-----------+--------------------------------------------+
  436. | `Values` | Integer number |
  437. +-----------+--------------------------------------------+
  438. | `Default` | Inherit |
  439. +-----------+--------------------------------------------+
  440. Target width of the image, add ``%`` to the end of value to specify it as percentages of the control width instead of pixels.
  441. - **region**
  442. +-----------+--------------------------------------------+
  443. | `Values` | x,y,width,height in pixels |
  444. +-----------+--------------------------------------------+
  445. | `Default` | Inherit |
  446. +-----------+--------------------------------------------+
  447. Region rect of the image. This can be used to display a single image from a spritesheet.
  448. - **pad**
  449. +-----------+--------------------------------------------+
  450. | `Values` | ``false``, ``true`` |
  451. +-----------+--------------------------------------------+
  452. | `Default` | ``false`` |
  453. +-----------+--------------------------------------------+
  454. If set to ``true``, and the image is smaller than the size specified by ``width`` and ``height``, the image padding is added to match the size instead of upscaling.
  455. - **tooltip**
  456. +-----------+--------------------------------------------+
  457. | `Values` | String |
  458. +-----------+--------------------------------------------+
  459. | `Default` | |
  460. +-----------+--------------------------------------------+
  461. Image tooltip.
  462. .. _doc_bbcode_in_richtextlabel_image_and_table_alignment:
  463. Image and table vertical alignment
  464. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  465. When a vertical alignment value is provided with the ``[img]`` or ``[table]`` tag
  466. the image/table will try to align itself against the surrounding text. Alignment is
  467. performed using a vertical point of the image and a vertical point of the text.
  468. There are 3 possible points on the image (``top``, ``center``, and ``bottom``) and 4
  469. possible points on the text and table (``top``, ``center``, ``baseline``, and ``bottom``),
  470. which can be used in any combination.
  471. To specify both points, use their full or short names as a value of the image/table tag:
  472. .. code-block:: none
  473. text [img=top,bottom]...[/img] text
  474. text [img=center,center]...[/img] text
  475. .. image:: img/bbcode_in_richtextlabel_image_align.webp
  476. .. code-block:: none
  477. text [table=3,center]...[/table] text # Center to center.
  478. text [table=3,top,bottom]...[/table] text # Top of the table to the bottom of text.
  479. text [table=3,baseline,baseline,1]...[/table] text # Baseline of the second row (rows use zero-based indexing) to the baseline of text.
  480. .. image:: img/bbcode_in_richtextlabel_table_align.webp
  481. You can also specify just one value (``top``, ``center``, or ``bottom``) to make
  482. use of a corresponding preset (``top-top``, ``center-center``, and ``bottom-bottom``
  483. respectively).
  484. Short names for the values are ``t`` (``top``), ``c`` (``center``), ``l`` (``baseline``),
  485. and ``b`` (``bottom``).
  486. .. _doc_bbcode_in_richtextlabel_font_options:
  487. Font options
  488. ~~~~~~~~~~~~
  489. - **name**, **n**
  490. +-----------+--------------------------------------------+
  491. | `Values` | A valid Font resource path. |
  492. +-----------+--------------------------------------------+
  493. | `Default` | Inherit |
  494. +-----------+--------------------------------------------+
  495. Font resource path.
  496. - **size**, **s**
  497. +-----------+--------------------------------------------+
  498. | `Values` | Number in pixels. |
  499. +-----------+--------------------------------------------+
  500. | `Default` | Inherit |
  501. +-----------+--------------------------------------------+
  502. Custom font size.
  503. - **glyph_spacing**, **gl**
  504. +-----------+--------------------------------------------+
  505. | `Values` | Number in pixels. |
  506. +-----------+--------------------------------------------+
  507. | `Default` | Inherit |
  508. +-----------+--------------------------------------------+
  509. Extra spacing for each glyph.
  510. - **space_spacing**, **sp**
  511. +-----------+--------------------------------------------+
  512. | `Values` | Number in pixels. |
  513. +-----------+--------------------------------------------+
  514. | `Default` | Inherit |
  515. +-----------+--------------------------------------------+
  516. Extra spacing for the space character.
  517. - **top_spacing**, **top**
  518. +-----------+--------------------------------------------+
  519. | `Values` | Number in pixels. |
  520. +-----------+--------------------------------------------+
  521. | `Default` | Inherit |
  522. +-----------+--------------------------------------------+
  523. Extra spacing at the top of the line.
  524. - **bottom_spacing**, **bt**
  525. +-----------+--------------------------------------------+
  526. | `Values` | Number in pixels. |
  527. +-----------+--------------------------------------------+
  528. | `Default` | Inherit |
  529. +-----------+--------------------------------------------+
  530. Extra spacing at the bottom of the line.
  531. - **embolden**, **emb**
  532. +-----------+--------------------------------------------+
  533. | `Values` | Floating-point number. |
  534. +-----------+--------------------------------------------+
  535. | `Default` | ``0.0`` |
  536. +-----------+--------------------------------------------+
  537. Font embolden strength, if it is not equal to zero, emboldens the font outlines. Negative values reduce the outline thickness.
  538. - **face_index**, **fi**
  539. +-----------+--------------------------------------------+
  540. | `Values` | Integer number. |
  541. +-----------+--------------------------------------------+
  542. | `Default` | ``0`` |
  543. +-----------+--------------------------------------------+
  544. An active face index in the TrueType / OpenType collection.
  545. - **slant**, **sln**
  546. +-----------+--------------------------------------------+
  547. | `Values` | Floating-point number. |
  548. +-----------+--------------------------------------------+
  549. | `Default` | ``0.0`` |
  550. +-----------+--------------------------------------------+
  551. Font slant strength, positive values slant glyphs to the right. Negative values to the left.
  552. - **opentype_variation**, **otv**
  553. +-----------+------------------------------------------------------+
  554. | `Values` | Comma-separated list of the OpenType variation tags. |
  555. +-----------+------------------------------------------------------+
  556. | `Default` | |
  557. +-----------+------------------------------------------------------+
  558. Font OpenType variation coordinates. See `OpenType variation tags <https://docs.microsoft.com/en-us/typography/opentype/spec/dvaraxisreg>`__.
  559. Note: The value should be enclosed in ``"`` to allow using ``=`` inside it:
  560. .. code-block:: none
  561. [font otv="wght=200,wdth=400"] # Sets variable font weight and width.
  562. - **opentype_features**, **otf**
  563. +-----------+----------------------------------------------------+
  564. | `Values` | Comma-separated list of the OpenType feature tags. |
  565. +-----------+----------------------------------------------------+
  566. | `Default` | |
  567. +-----------+----------------------------------------------------+
  568. Font OpenType features. See `OpenType features tags <https://docs.microsoft.com/en-us/typography/opentype/spec/featuretags>`__.
  569. Note: The value should be enclosed in ``"`` to allow using ``=`` inside it:
  570. .. code-block:: none
  571. [font otf="calt=0,zero=1"] # Disable contextual alternates, enable slashed zero.
  572. .. _doc_bbcode_in_richtextlabel_named_colors:
  573. Named colors
  574. ~~~~~~~~~~~~
  575. For tags that allow specifying a color by name you can use names of the constants from
  576. the built-in :ref:`class_Color` class. Named classes can be specified in a number of
  577. styles using different casings: ``DARK_RED``, ``DarkRed``, and ``darkred`` will give
  578. the same exact result.
  579. .. _doc_bbcode_in_richtextlabel_hex_colors:
  580. Hexadecimal color codes
  581. ~~~~~~~~~~~~~~~~~~~~~~~
  582. For opaque RGB colors, any valid 6-digit hexadecimal code is supported, e.g.
  583. ``[color=#ffffff]white[/color]``. Shorthand RGB color codes such as ``#6f2``
  584. (equivalent to ``#66ff22``) are also supported.
  585. For transparent RGB colors, any RGBA 8-digit hexadecimal code can be used,
  586. e.g. ``[color=#ffffff88]translucent white[/color]``. Note that the alpha channel
  587. is the **last** component of the color code, not the first one. Short RGBA
  588. color codes such as ``#6f28`` (equivalent to ``#66ff2288``) are supported as well.
  589. .. _doc_bbcode_in_richtextlabel_cell_options:
  590. Cell options
  591. ~~~~~~~~~~~~
  592. - **expand**
  593. +-----------+--------------------------------------------+
  594. | `Values` | Integer number |
  595. +-----------+--------------------------------------------+
  596. | `Default` | 1 |
  597. +-----------+--------------------------------------------+
  598. Cell expansion ratio. This defines which cells will try to expand to
  599. proportionally to other cells and their expansion ratios.
  600. - **border**
  601. +-----------+--------------------------------------------+
  602. | `Values` | Color name or color in HEX format |
  603. +-----------+--------------------------------------------+
  604. | `Default` | Inherit |
  605. +-----------+--------------------------------------------+
  606. Cell border color.
  607. - **bg**
  608. +-----------+--------------------------------------------+
  609. | `Values` | Color name or color in HEX format |
  610. +-----------+--------------------------------------------+
  611. | `Default` | Inherit |
  612. +-----------+--------------------------------------------+
  613. Cell background color. For alternating odd/even row backgrounds,
  614. you can use ``bg=odd_color,even_color``.
  615. - **padding**
  616. +-----------+--------------------------------------------+
  617. | `Values` | 4 comma-separated floating-point numbers |
  618. +-----------+--------------------------------------------+
  619. | `Default` | 0, 0, 0, 0 |
  620. +-----------+--------------------------------------------+
  621. Left, top, right, and bottom cell padding.
  622. .. _doc_bbcode_in_richtextlabel_unordered_list_bullet:
  623. Unordered list bullet
  624. ~~~~~~~~~~~~~~~~~~~~~
  625. By default, the ``[ul]`` tag uses the ``U+2022`` "Bullet" Unicode glyph as the
  626. bullet character. This behavior is similar to web browsers. The bullet character
  627. can be customized using ``[ul bullet={bullet}]``. If provided, this ``{bullet}``
  628. parameter must be a *single* character with no enclosing quotes (for example,
  629. ``[bullet=*]``). Additional characters are ignored. The bullet character's
  630. width does not affect the list's formatting.
  631. See `Bullet (typography) on Wikipedia <https://en.wikipedia.org/wiki/Bullet_(typography)>`__
  632. for a list of common bullet characters that you can paste directly in the ``bullet`` parameter.
  633. .. _doc_bbcode_in_richtextlabel_list_types:
  634. Ordered list types
  635. ~~~~~~~~~~~~~~~~~~
  636. Ordered lists can be used to automatically mark items with numbers
  637. or letters in ascending order. This tag supports the following
  638. type options:
  639. - ``1`` - Numbers, using language specific numbering system if possible.
  640. - ``a``, ``A`` - Lower and upper case Latin letters.
  641. - ``i``, ``I`` - Lower and upper case Roman numerals.
  642. Text effects
  643. ------------
  644. BBCode can also be used to create different text effects that can optionally be
  645. animated. Five customizable effects are provided out of the box, and you can
  646. easily create your own. By default, animated effects will pause
  647. :ref:`when the SceneTree is paused <doc_pausing_games>`. You can change this
  648. behavior by adjusting the RichTextLabel's **Process > Mode** property.
  649. All examples below mention the default values for options in the listed tag format.
  650. .. note::
  651. Text effects that move characters' position may result in characters being
  652. clipped by the RichTextLabel node bounds.
  653. You can resolve this by disabling **Control > Layout > Clip Contents** in
  654. the inspector after selecting the RichTextLabel node, or ensuring there is
  655. enough margin added around the text by using line breaks above and below the
  656. line using the effect.
  657. Pulse
  658. ~~~~~
  659. .. image:: img/bbcode_in_richtextlabel_effect_pulse.webp
  660. Pulse creates an animated pulsing effect that multiplies each character's
  661. opacity and color. It can be used to bring attention to specific text. Its tag
  662. format is ``[pulse freq=1.0 color=#ffffff40 ease=-2.0]{text}[/pulse]``.
  663. ``freq`` controls the frequency of the half-pulsing cycle (higher is faster). A
  664. full pulsing cycle takes ``2 * (1.0 / freq)`` seconds. ``color`` is the target
  665. color multiplier for blinking. The default mostly fades out text, but not
  666. entirely. ``ease`` is the easing function exponent to use. Negative values
  667. provide in-out easing, which is why the default is ``-2.0``.
  668. Wave
  669. ~~~~
  670. .. image:: img/bbcode_in_richtextlabel_effect_wave.webp
  671. Wave makes the text go up and down. Its tag format is
  672. ``[wave amp=50.0 freq=5.0 connected=1]{text}[/wave]``.
  673. ``amp`` controls how high and low the effect goes, and ``freq`` controls how
  674. fast the text goes up and down. A ``freq`` value of ``0`` will result in no
  675. visible waves, and negative ``freq`` values won't display any waves either. If
  676. ``connected`` is ``1`` (default), glyphs with ligatures will be moved together.
  677. If ``connected`` is ``0``, each glyph is moved individually even if they are
  678. joined by ligatures. This can work around certain rendering issues with font
  679. ligatures.
  680. Tornado
  681. ~~~~~~~
  682. .. image:: img/bbcode_in_richtextlabel_effect_tornado.webp
  683. Tornado makes the text move around in a circle. Its tag format is
  684. ``[tornado radius=10.0 freq=1.0 connected=1]{text}[/tornado]``.
  685. ``radius`` is the radius of the circle that controls the offset, ``freq`` is how
  686. fast the text moves in a circle. A ``freq`` value of ``0`` will pause the
  687. animation, while negative ``freq`` will play the animation backwards. If
  688. ``connected`` is ``1`` (default), glyphs with ligatures will be moved together.
  689. If ``connected`` is ``0``, each glyph is moved individually even if they are
  690. joined by ligatures. This can work around certain rendering issues with font
  691. ligatures.
  692. Shake
  693. ~~~~~
  694. .. image:: img/bbcode_in_richtextlabel_effect_shake.webp
  695. Shake makes the text shake. Its tag format is
  696. ``[shake rate=20.0 level=5 connected=1]{text}[/shake]``.
  697. ``rate`` controls how fast the text shakes, ``level`` controls how far the text
  698. is offset from the origin. If ``connected`` is ``1`` (default), glyphs with
  699. ligatures will be moved together. If ``connected`` is ``0``, each glyph is moved
  700. individually even if they are joined by ligatures. This can work around certain
  701. rendering issues with font ligatures.
  702. Fade
  703. ~~~~
  704. .. image:: img/bbcode_in_richtextlabel_effect_fade.webp
  705. Fade creates a static fade effect that multiplies each character's opacity.
  706. Its tag format is ``[fade start=4 length=14]{text}[/fade]``.
  707. ``start`` controls the starting position of the falloff relative to where the fade
  708. command is inserted, ``length`` controls over how many characters should the fade
  709. out take place.
  710. Rainbow
  711. ~~~~~~~
  712. .. image:: img/bbcode_in_richtextlabel_effect_rainbow.webp
  713. Rainbow gives the text a rainbow color that changes over time. Its tag format is
  714. ``[rainbow freq=1.0 sat=0.8 val=0.8]{text}[/rainbow]``.
  715. ``freq`` is the number of full rainbow cycles per second, ``sat`` is the
  716. saturation of the rainbow, ``val`` is the value of the rainbow. A ``freq`` value
  717. of ``0`` will pause the animation, while negative ``freq`` will play the
  718. animation backwards.
  719. Font outlines are *not* affected by the rainbow effect (they keep their original color).
  720. Existing font colors are overridden by the rainbow effect. However, CanvasItem's
  721. **Modulate** and **Self Modulate** properties will affect how the rainbow effect
  722. looks, as modulation multiplies its final colors.
  723. Custom BBCode tags and text effects
  724. -----------------------------------
  725. You can extend the :ref:`class_RichTextEffect` resource type to create your own custom
  726. BBCode tags. Create a new script file that extends the :ref:`class_RichTextEffect` resource type
  727. and give the script a ``class_name`` so that the effect can be selected in the inspector.
  728. Add the ``@tool`` annotation to your GDScript file if you wish to have these custom effects
  729. run within the editor itself. The RichTextLabel does not need to have a script attached,
  730. nor does it need to be running in ``tool`` mode. The new effect can be registered in
  731. the Inspector by adding it to the **Markup > Custom Effects** array, or in code with the
  732. :ref:`install_effect() <class_RichTextLabel_method_install_effect>` method:
  733. .. figure:: img/bbcode_in_richtextlabel_selecting_custom_richtexteffect.webp
  734. :align: center
  735. :alt: Selecting a custom RichTextEffect after saving a script that extends RichTextEffect with a ``class_name``
  736. Selecting a custom RichTextEffect after saving a script that extends RichTextEffect with a ``class_name``
  737. .. warning::
  738. If the custom effect is not registered within the RichTextLabel's
  739. **Markup > Custom Effects** property, no effect will be visible and the original
  740. tag will be left as-is.
  741. There is only one function that you need to extend: ``_process_custom_fx(char_fx)``.
  742. Optionally, you can also provide a custom BBCode identifier simply by adding a member
  743. name ``bbcode``. The code will check the ``bbcode`` property automatically or will
  744. use the name of the file to determine what the BBCode tag should be.
  745. ``_process_custom_fx``
  746. ~~~~~~~~~~~~~~~~~~~~~~
  747. This is where the logic of each effect takes place and is called once per glyph
  748. during the draw phase of text rendering. This passes in a :ref:`class_CharFXTransform`
  749. object, which holds a few variables to control how the associated glyph is rendered:
  750. - ``identity`` specifies which custom effect is being processed. You should use that for
  751. code flow control.
  752. - ``outline`` is ``true`` if effect is called for drawing text outline.
  753. - ``range`` tells you how far into a given custom effect block you are in as an
  754. index.
  755. - ``elapsed_time`` is the total amount of time the text effect has been running.
  756. - ``visible`` will tell you whether the glyph is visible or not and will also allow you
  757. to hide a given portion of text.
  758. - ``offset`` is an offset position relative to where the given glyph should render under
  759. normal circumstances.
  760. - ``color`` is the color of a given glyph.
  761. - ``glyph_index`` and ``font`` is glyph being drawn and font data resource used to draw it.
  762. - Finally, ``env`` is a :ref:`class_Dictionary` of parameters assigned to a given custom
  763. effect. You can use :ref:`get() <class_Dictionary_method_get>` with an optional default value
  764. to retrieve each parameter, if specified by the user. For example ``[custom_fx spread=0.5
  765. color=#FFFF00]test[/custom_fx]`` would have a float ``spread`` and Color ``color``
  766. parameters in its ``env`` Dictionary. See below for more usage examples.
  767. The last thing to note about this function is that it is necessary to return a boolean
  768. ``true`` value to verify that the effect processed correctly. This way, if there's a problem
  769. with rendering a given glyph, it will back out of rendering custom effects entirely until
  770. the user fixes whatever error cropped up in their custom effect logic.
  771. Here are some examples of custom effects:
  772. Ghost
  773. ~~~~~
  774. ::
  775. @tool
  776. extends RichTextEffect
  777. class_name RichTextGhost
  778. # Syntax: [ghost freq=5.0 span=10.0][/ghost]
  779. # Define the tag name.
  780. var bbcode = "ghost"
  781. func _process_custom_fx(char_fx):
  782. # Get parameters, or use the provided default value if missing.
  783. var speed = char_fx.env.get("freq", 5.0)
  784. var span = char_fx.env.get("span", 10.0)
  785. var alpha = sin(char_fx.elapsed_time * speed + (char_fx.range.x / span)) * 0.5 + 0.5
  786. char_fx.color.a = alpha
  787. return true
  788. Matrix
  789. ~~~~~~
  790. ::
  791. @tool
  792. extends RichTextEffect
  793. class_name RichTextMatrix
  794. # Syntax: [matrix clean=2.0 dirty=1.0 span=50][/matrix]
  795. # Define the tag name.
  796. var bbcode = "matrix"
  797. # Gets TextServer for retrieving font information.
  798. func get_text_server():
  799. return TextServerManager.get_primary_interface()
  800. func _process_custom_fx(char_fx):
  801. # Get parameters, or use the provided default value if missing.
  802. var clear_time = char_fx.env.get("clean", 2.0)
  803. var dirty_time = char_fx.env.get("dirty", 1.0)
  804. var text_span = char_fx.env.get("span", 50)
  805. var value = char_fx.glyph_index
  806. var matrix_time = fmod(char_fx.elapsed_time + (char_fx.range.x / float(text_span)), \
  807. clear_time + dirty_time)
  808. matrix_time = 0.0 if matrix_time < clear_time else \
  809. (matrix_time - clear_time) / dirty_time
  810. if matrix_time > 0.0:
  811. value = int(1 * matrix_time * (126 - 65))
  812. value %= (126 - 65)
  813. value += 65
  814. char_fx.glyph_index = get_text_server().font_get_glyph_index(char_fx.font, 1, value, 0)
  815. return true
  816. This will add a few new BBCode commands, which can be used like so:
  817. .. code-block:: none
  818. [center][ghost]This is a custom [matrix]effect[/matrix][/ghost] made in
  819. [pulse freq=5.0 height=2.0][pulse color=#00FFAA freq=2.0]GDScript[/pulse][/pulse].[/center]