gui_using_fonts.rst 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981
  1. .. _doc_gui_using_fonts:
  2. Using Fonts
  3. ===========
  4. Godot allows you to set specific fonts for different UI nodes.
  5. There are three different places where you can setup font usage.
  6. The first is the theme editor. Choose the node you want to set the
  7. font for and select the font tab. The second is in the inspector
  8. for control nodes under **Theme Overrides > Fonts**. Lastly, in
  9. the inspector settings for themes under **Default Font**.
  10. If no font override is specified anywhere,
  11. `Open Sans <https://fonts.google.com/specimen/Open+Sans>`__ SemiBold
  12. is used as the default project font.
  13. .. note::
  14. Since Godot 4.0, font sizes are no longer defined in the font itself but are
  15. instead defined in the node that uses the font. This is done in the
  16. **Theme Overrides > Font Sizes** section of the inspector.
  17. This allows changing the font size without having to duplicate the font
  18. resource for every different font size.
  19. There are 2 kinds of font files: *dynamic* (TTF/OTF/WOFF/WOFF2 formats) and
  20. *bitmap* (BMFont ``.fnt`` format or monospaced image). Dynamic fonts are the
  21. most commonly used option, as they can be resized and still look crisp at higher
  22. sizes. Thanks to their vector-based nature, they can also contain a lot more
  23. glyphs while keeping a reasonable file size compared to bitmap fonts. Dynamic
  24. fonts also support some advanced features that bitmap fonts cannot support, such
  25. as *ligatures* (several characters transforming into a single different design).
  26. .. tip::
  27. You can find freely licensed font files on websites such as `Google Fonts
  28. <https://fonts.google.com/>`__ and `Font Library
  29. <https://fontlibrary.org/>`__.
  30. Fonts are covered by copyright. Double-check the license of a font before
  31. using it, as not all fonts allow commercial use without purchasing a license.
  32. .. seealso::
  33. You can see how fonts work in action using the
  34. `BiDI and Font Features demo project <https://github.com/godotengine/godot-demo-projects/tree/master/gui/bidi_and_font_features>`__.
  35. Dynamic fonts
  36. -------------
  37. Godot supports the following dynamic font formats:
  38. - TrueType Font or Collection (``.ttf``, ``.ttc``)
  39. - OpenType Font or Collection (``.otf``, ``.otc``)
  40. - Web Open Font Format 1 (``.woff``)
  41. - Web Open Font Format 2 (``.woff2``, since Godot 3.5)
  42. While ``.woff`` and especially ``.woff2`` tend to result in smaller file sizes,
  43. there is no universally "better" font format. In most situations, it's
  44. recommended to use the font format that was shipped on the font developer's
  45. website.
  46. Bitmap fonts
  47. ------------
  48. Godot supports the BMFont (``.fnt``) bitmap font format. This is a format created
  49. by the `BMFont <https://www.angelcode.com/products/bmfont/>`__ program. Many
  50. BMFont-compatible programs also exist, like `BMGlyph <https://www.bmglyph.com/>`__ or web-based `fontcutter <https://github.com/fabienbk/fontcutter>`__.
  51. Alternatively, you can import any image to be used as a bitmap font. This is
  52. only supported for **monospaced** fonts (fonts where each character has the same
  53. width). To do so, select the image in the FileSystem dock, go to the
  54. Import dock, change its import type to **Font Data (Monospace Image Font)** then
  55. click **Reimport**:
  56. .. figure:: img/using_fonts_bitmap_font_from_image_import_options.webp
  57. :align: center
  58. :alt: Changing import type to Font Data (Monospace Image Font)
  59. Changing import type to **Font Data (Monospace Image Font)**
  60. The font's character set layout can be in any order, but orders that match
  61. standard Unicode are recommended as they'll require far less configuration to
  62. import. For example, the bitmap font below contains
  63. `ASCII <https://en.wikipedia.org/wiki/ASCII>`__ characters and follows standard ASCII ordering:
  64. .. figure:: img/using_fonts_monospace_bitmap_font_example.webp
  65. :align: center
  66. :alt: Bitmap font example
  67. Credit: `LibreQuake <https://github.com/MissLav/LibreQuake/blob/master/lq1/gfx-wad/CONCHARS.png>`__
  68. (scaled and cropped to exclude extended range)
  69. The following import options can be used to import the above font image
  70. successfully:
  71. .. figure:: img/using_fonts_bitmap_font_from_image_example_configuration.webp
  72. :align: center
  73. :alt: Import options to use for the above example font
  74. Import options to use for the above example font
  75. The **Character Ranges** option is an array that maps each position on the image
  76. (in tile coordinates, not pixels). The font atlas is traversed from left to
  77. right and top to bottom. Characters can be specified with decimal numbers
  78. (``127``), hexadecimal numbers (``0x007f``) or between *single* quotes
  79. (``'~'``). Ranges can be specified with a hyphen between characters.
  80. For instance, ``0-127`` (or ``0x0000-0x007f``) denotes the full ASCII range.
  81. As another example, ``' '-'~'`` is equivalent to ``32-127`` and denotes the range
  82. of *printable* (visible) ASCII characters.
  83. Make sure the **Character Ranges** option doesn't exceed the number of
  84. **Columns** × **Rows** defined. Otherwise, the font will fail to import.
  85. If your font image contains margins not used for font glyphs (such as
  86. attribution information), try adjusting **Image Margin**. This is a margin
  87. applied only once around the whole image.
  88. If your font image contains guides (in the form of lines between glyphs) or
  89. if spacing between characters appears incorrect, try adjusting **Character
  90. Margin**. This margin is applied for every imported glyph.
  91. Loading a font file
  92. -------------------
  93. To load a font file (dynamic or bitmap), use the resource dropdown's
  94. **Quick Load** or **Load** option next to a font property, then navigate to the
  95. font file in question:
  96. .. figure:: img/using_fonts_load_font.webp
  97. :align: center
  98. Loading a font file
  99. You can also drag-and-drop a font file from the FileSystem dock to the inspector
  100. property that accepts a Font resource.
  101. .. warning::
  102. In Godot 4.0 and later, texture filter and repeat properties are defined in
  103. the location where the texture is used, rather than on the texture itself.
  104. This also applies to fonts (both dynamic fonts and bitmap fonts).
  105. Fonts that have a pixel art appearance should have bilinear filtering disabled
  106. by changing the **Rendering > Textures > Canvas Textures > Default Texture Filter**
  107. project setting to **Nearest**.
  108. The font size must also be an integer multiple of the design size (which
  109. varies on a per-font basis), and the Control node using the font must be
  110. scaled by an integer multiple as well. Otherwise, the font may look blurry.
  111. Font sizes in Godot are specified in pixels (px), not points (pt). Keep this
  112. in mind when comparing font sizes across different software.
  113. The texture filter mode can also be set on individual nodes that inherit from CanvasItem
  114. by setting :ref:`CanvasItem.texture_filter <class_CanvasItem_property_texture_filter>`.
  115. Font outlines and shadows
  116. -------------------------
  117. Font outlines and shadows can be used to improve readability when the background
  118. color isn't known in advance. For instance, this is the case for HUD elements
  119. that are drawn over a 2D/3D scene.
  120. Font outlines are available in most nodes that derive from Control, in addition
  121. to :ref:`class_Label3D`.
  122. To enable outline for a font on a given node, configure the theme overrides
  123. **Font Outline Color** and **Outline Size** in the inspector. The result should
  124. look like this:
  125. .. figure:: img/using_fonts_outline_example.webp
  126. :align: center
  127. :alt: Font outline example
  128. Font outline example
  129. .. note::
  130. If using a font with MSDF rendering, its **MSDF Pixel Range** import option
  131. be set to at least *twice* the value of the outline size for outline
  132. rendering to look correct. Otherwise, the outline may appear to be cut off
  133. earlier than intended.
  134. Support for font shadows is more limited: they are only available in
  135. :ref:`class_Label` and :ref:`class_RichTextLabel`. Additionally, font shadows
  136. always have a hard edge (but you can reduce their opacity to make them look more
  137. subtle). To enable font shadows on a given node, configure the **Font Shadow
  138. Color**, **Shadow Offset X**, and **Shadow Offset Y** theme overrides in a Label
  139. or RichTextLabel node accordingly:
  140. .. figure:: img/using_fonts_shadow.webp
  141. :align: center
  142. :alt: Configuring font shadow in a Label node
  143. Configuring font shadow in a Label node
  144. The result should look like this:
  145. .. figure:: img/using_fonts_shadow_example.webp
  146. :align: center
  147. :alt: Font shadow example
  148. Font shadow example
  149. .. tip::
  150. You can create local overrides to font display in Label nodes by creating a
  151. :ref:`class_LabelSettings` resource that you reuse across Label nodes. This
  152. resource takes priority over :ref:`theme properties <doc_gui_skinning>`.
  153. Advanced font features
  154. ----------------------
  155. .. _doc_using_fonts_antialiasing:
  156. Antialiasing
  157. ^^^^^^^^^^^^
  158. You can adjust how the font should be smoothed out when rendering by adjusting
  159. *antialiasing* and *hinting*. These are different properties, with different use
  160. cases.
  161. Antialiasing controls how glyph edges should be smoothed out when rasterizing
  162. the font. The default antialiasing method (**Grayscale**) works well on every
  163. display technology. However, at small sizes, grayscale antialiasing may result
  164. in fonts looking blurry.
  165. The antialiasing sharpness can be improved by using LCD subpixel optimization,
  166. which exploits the subpixel patterns of most LCD displays by offsetting the font
  167. antialiasing on a per-channel basis (red/green/blue). The downside is that this
  168. can introduce "fringing" on edges, especially on display technologies that don't
  169. use standard RGB subpixels (such as OLED displays).
  170. In most games, it's recommended to stick to the default **Grayscale**
  171. antialiasing. For non-game applications, LCD subpixel optimization is worth
  172. exploring.
  173. .. figure:: img/using_fonts_antialiasing_comparison.webp
  174. :align: center
  175. :alt: Font antialiasing comparison
  176. From top to bottom: Disabled, Grayscale, LCD Subpixel (RGB)
  177. .. note::
  178. Antialiasing cannot be changed on :ref:`MSDF-rendered fonts <doc_using_fonts_msdf>`
  179. – these are always rendered with grayscale antialiasing.
  180. .. _doc_using_fonts_hinting:
  181. Hinting
  182. ^^^^^^^
  183. Hinting controls how aggressively glyph edges should be snapped to pixels when
  184. rasterizing the font. **None** results in the smoothest appearance, which can
  185. make the font look blurry at small sizes. **Light** (default) is sharper by
  186. snapping glyph edges to pixels on the Y axis only, while **Full** is even sharper
  187. by snapping glyph edges to pixels on both X and Y axes. Depending on personal
  188. preference, you may prefer using one hinting mode over the other.
  189. .. figure:: img/using_fonts_hinting_comparison.webp
  190. :align: center
  191. :alt: Font hinting comparison
  192. From top to bottom: None, Light, Full hinting
  193. .. note::
  194. If changing the hinting mode has no visible effect after clicking
  195. **Reimport**, it's usually because the font doesn't include hinting
  196. instructions. This can be resolved by looking for a version of the font file
  197. that includes hinting instructions, or enabling **Force Autohinter** in the
  198. Import dock. This will use `FreeType <https://freetype.org/>`__'s autohinter
  199. to automatically add hinting instructions to the imported font.
  200. .. _doc_using_fonts_subpixel_positioning:
  201. Subpixel positioning
  202. ^^^^^^^^^^^^^^^^^^^^
  203. Subpixel positioning can be adjusted. This is a `FreeType <https://freetype.org/>`__
  204. feature that allows glyphs to be rendered more closely to their intended form.
  205. The default setting of **Auto** automatically enables subpixel positioning at
  206. small sizes, but disables it at large font sizes to improve rasterization
  207. performance.
  208. You can force the subpixel positioning mode to **Disabled**, **One half of a
  209. pixel** or **One quarter of a pixel**. **One quarter of a pixel** provides the
  210. best quality, at the cost of longer rasterization times.
  211. Changing antialiasing, hinting and subpixel positioning has the most visible
  212. effect at smaller font sizes.
  213. .. warning::
  214. Fonts that have a pixel art appearance should have their subpixel positioning
  215. mode set to **Disabled**. Otherwise, the font may appear to have uneven pixel
  216. sizes.
  217. This step is not required for bitmap fonts, as subpixel positioning is only
  218. relevant for dynamic fonts (which are usually made of vector elements).
  219. .. _doc_using_fonts_mipmaps:
  220. Mipmaps
  221. ^^^^^^^
  222. By default, fonts do not have mipmaps generated to reduce memory usage and speed
  223. up rasterization. However, this can cause downscaled fonts to become grainy. This
  224. can be especially noticeable with :ref:`doc_3d_text` that doesn't have **Fixed
  225. Size** enabled. This can also occur when displaying text with a traditional rasterized
  226. (non-:ref:`MSDF <doc_using_fonts_msdf>`) font in a Control node that has its scale
  227. lower than ``(1, 1)``.
  228. After selecting a font in the FileSystem dock, you can enable the **Mipmaps** in
  229. the Import dock to improve downscaled font rendering appearance.
  230. Mipmaps can be enabled on MSDF fonts as well. This can improve font rendering
  231. quality a little at smaller-than-default sizes, but MSDF fonts are already
  232. resistant to graininess out of the box.
  233. .. _doc_using_fonts_msdf:
  234. MSDF font rendering
  235. ^^^^^^^^^^^^^^^^^^^
  236. Multi-channel signed distance field (MSDF) font rendering allows rendering fonts
  237. at any size, without having to re-rasterize them when their size changes.
  238. MSDF font rendering has 2 upsides over traditional font rasterization, which
  239. Godot uses by default:
  240. - The font will always look crisp, even at huge sizes.
  241. - There is less stuttering when rendering characters *at large font sizes* for
  242. the first time, as there is no rasterization performed.
  243. The downsides of MSDF font rendering are:
  244. - Higher baseline cost for font rendering. This is usually not noticeable on
  245. desktop platforms, but it can have an impact on low-end mobile devices.
  246. - Fonts at small sizes will not look as clear as rasterized fonts, due to the
  247. lack of hinting.
  248. - Rendering new glyphs for the first time *at small font sizes* may be more
  249. expensive compared to traditional rasterized fonts.
  250. :ref:`doc_using_fonts_font_prerendering` can be used to alleviate this.
  251. - LCD subpixel optimization cannot be enabled for MSDF fonts.
  252. - Fonts with self-intersecting outlines will not render correctly in MSDF mode.
  253. If you notice rendering issues on fonts downloaded from websites such as
  254. `Google Fonts <https://fonts.google.com>`__, try downloading the font from the
  255. font author's official website instead.
  256. .. figure:: img/using_fonts_rasterized_vs_msdf_comparison.webp
  257. :align: center
  258. :alt: Comparison of font rasterization methods
  259. Comparison of font rasterization methods.
  260. From top to bottom: rasterized without oversampling, rasterized with oversampling, MSDF
  261. To enable MSDF rendering for a given font, select it in the FileSystem dock, go
  262. to the Import dock, enable **Multichannel Signed Distance Field**, then click
  263. **Reimport**:
  264. .. figure:: img/using_fonts_msdf_import_options.webp
  265. :align: center
  266. :alt: Enabling MSDF in the font's import options
  267. Enabling MSDF in the font's import options
  268. .. _doc_using_fonts_emoji:
  269. Using emoji
  270. ^^^^^^^^^^^
  271. Godot has limited support for emoji fonts:
  272. - CBDT/CBLC (embedded PNGs) and SVG emoji fonts are supported.
  273. - COLR/CPAL emoji fonts (custom vector format) are **not** supported.
  274. - EMJC bitmap image compression (used by iOS' system emoji font) is **not** supported.
  275. This means that to support emoji on iOS, you must use a custom font that
  276. uses SVG or PNG bitmap compression instead.
  277. For Godot to be able to display emoji, the font used (or one of its
  278. :ref:`fallbacks <doc_using_fonts_font_fallbacks>`) needs to include them.
  279. Otherwise, emoji won't be displayed and placeholder "tofu" characters will
  280. appear instead:
  281. .. figure:: img/using_fonts_emoji_placeholder_characters.webp
  282. :align: center
  283. :alt: Default appearance when trying to use emoji in a label
  284. Default appearance when trying to use emoji in a label
  285. After adding a font to display emoji such as
  286. `Noto Color Emoji <https://fonts.google.com/noto/specimen/Noto+Color+Emoji>`__,
  287. you get the expected result:
  288. .. figure:: img/using_fonts_emoji_correct_characters.webp
  289. :align: center
  290. :alt: Correct appearance after adding an emoji font to the label
  291. Correct appearance after adding an emoji font to the label
  292. To use a regular font alongside emoji, it's recommended to specify a
  293. :ref:`fallback font <doc_using_fonts_font_fallbacks>` that points to the
  294. emoji font in the regular font's advanced import options. If you wish to use
  295. the default project font while displaying emoji, leave the **Base Font**
  296. property in FontVariation empty while adding a font fallback pointing to the
  297. emoji font:
  298. .. tip::
  299. Emoji fonts are quite large in size, so you may want to :ref:`load a system
  300. font <doc_using_fonts_system_fonts>` to provide emoji glyphs rather than
  301. bundling it with your project. This allows providing full emoji support in
  302. your project without increasing the size of its exported PCK. The downside
  303. is that emoji will look different depending on the platform, and loading
  304. system fonts is not supported on all platforms.
  305. It's possible to use a system font as a fallback font too.
  306. Using icon fonts
  307. ^^^^^^^^^^^^^^^^
  308. Tools like `Fontello <https://fontello.com/>`__ can be used to generate font
  309. files containing vectors imported from SVG files. This can be used to render
  310. custom vector elements as part of your text, or to create extruded 3D icons
  311. with :ref:`doc_3d_text` and TextMesh.
  312. .. note::
  313. Fontello currently does not support creating multicolored fonts (which Godot
  314. can render). As of November 2022, support for multicolored fonts in icon
  315. font generation tools remains scarce.
  316. Depending on your use cases, this may lead to better results compared to using
  317. the ``img`` tag in :ref:`RichTextLabel <doc_bbcode_in_richtextlabel>`. Unlike
  318. bitmap images (including SVGs which are rasterized on import by Godot),
  319. true vector data can be resized to any size without losing quality.
  320. After downloading the generated font file, load it in your Godot project then
  321. specify it as a custom font for a Label, RichTextLabel or Label3D node. Switch
  322. over to the Fontello web interface, then copy the character by selecting it then
  323. pressing :kbd:`Ctrl + C` (:kbd:`Cmd + C` on macOS). Paste the character in the
  324. **Text** property of your Label node. The character will appear as a placeholder
  325. glyph in the inspector, but it should appear correctly in the 2D/3D viewport.
  326. To use an icon font alongside a traditional font in the same Control, you can
  327. specify the icon font as a :ref:`fallback <doc_using_fonts_font_fallbacks>`.
  328. This works because icon fonts use the Unicode *private use area*, which is
  329. reserved for use by custom fonts and doesn't contain standard glyphs by design.
  330. .. note::
  331. Several modern icon fonts such as `Font Awesome 6 <https://fontawesome.com/download>`__
  332. have a desktop variant that uses *ligatures* to specify icons. This allows you to
  333. specify icons by entering their name directly in the **Text** property of any
  334. node that can display fonts. Once the icon's name is fully entered as text
  335. (such as ``house``), it will be replaced by the icon.
  336. While easier to use, this approach cannot be used with font fallbacks as the main
  337. font's characters will take priority over the fallback font's ligatures.
  338. .. _doc_using_fonts_font_fallbacks:
  339. Font fallbacks
  340. ^^^^^^^^^^^^^^
  341. Godot supports defining one or more fallbacks when the main font lacks a glyph
  342. to be displayed. There are 2 main use cases for defining font fallbacks:
  343. - Use a font that only supports Latin character sets, but use another font to
  344. be able to display text another character set such as Cyrillic.
  345. - Use a font to render text, and another font to render emoji or icons.
  346. Open the Advanced Import Settings dialog by double-clicking the font file in the
  347. FileSystem dock. You can also select the font in the FileSystem dock, go to the
  348. Import dock then choose **Advanced…** at the bottom:
  349. .. figure:: img/using_fonts_advanced_import_settings.webp
  350. :align: center
  351. Import dock
  352. In the dialog that appears, look for **Fallbacks** section
  353. on the sidebar on the right, click the **Array[Font] (size 0)** text to expand
  354. the property, then click **Add Element**:
  355. .. figure:: img/using_fonts_font_fallbacks_add.webp
  356. :align: center
  357. Adding font fallback
  358. Click the dropdown arrow on the new element, then choose a font file using the
  359. **Quick Load** or **Load** options:
  360. .. figure:: img/using_fonts_font_fallbacks_load.webp
  361. :align: center
  362. Loading font fallback
  363. It is possible to add fallback fonts while using the default project font. To do
  364. so, leave the **Base Font** property empty while adding one or more font
  365. fallbacks.
  366. .. note::
  367. Font fallbacks can also be defined on a local basis similar to
  368. :ref:`doc_using_fonts_opentype_font_features`, but this is not covered here
  369. for brevity reasons.
  370. .. _doc_using_fonts_variable_fonts:
  371. Variable fonts
  372. ^^^^^^^^^^^^^^
  373. Godot has full support for `variable fonts <https://variablefonts.io/>`__, which
  374. allow you to use a single font file to represent various font weights and styles
  375. (regular, bold, italic, …). This must be supported by the font file you're using.
  376. To use a variable font, create a :ref:`class_FontVariation` resource in the
  377. location where you intend to use the font, then load a font file within the
  378. FontVariation resource:
  379. .. figure:: img/using_fonts_font_variation_create.webp
  380. :align: center
  381. Creating a FontVariation resource
  382. .. figure:: img/using_fonts_font_variation_load.webp
  383. :align: center
  384. Loading a font file into the FontVariation resource
  385. Scroll down to the FontVariation's **Variation** section, then click the
  386. **Variation Coordinates** text to expand the list of axes that can be adjusted:
  387. .. figure:: img/using_fonts_font_variation_variable_font.webp
  388. :align: center
  389. List of variation axes
  390. The set of axes you can adjust depends on the font loaded. Some variable fonts
  391. only support one axis of adjustment (typically *weight* or *slant*), while
  392. others may support multiple axes of adjustment.
  393. For example, here's the `Inter V <https://rsms.me/inter/>`__ font with a
  394. *weight* of ``900`` and a *slant* of ``-10``:
  395. .. figure:: img/using_fonts_font_variation_variable_font_example.webp
  396. :align: center
  397. Variable font example (Inter V)
  398. .. tip::
  399. While variable font axis names and scales aren't standardized,
  400. some common conventions are usually followed by font designers.
  401. The *weight* axis is standardized in OpenType to work as follows:
  402. +------------+--------------------------------+
  403. | Axis value | Effective font weight |
  404. +============+================================+
  405. | ``100`` | Thin (Hairline) |
  406. +------------+--------------------------------+
  407. | ``200`` | Extra Light (Ultra Light) |
  408. +------------+--------------------------------+
  409. | ``300`` | Light |
  410. +------------+--------------------------------+
  411. | ``400`` | **Regular (Normal)** |
  412. +------------+--------------------------------+
  413. | ``500`` | Medium |
  414. +------------+--------------------------------+
  415. | ``600`` | Semi-Bold (Demi-Bold) |
  416. +------------+--------------------------------+
  417. | ``700`` | **Bold** |
  418. +------------+--------------------------------+
  419. | ``800`` | Extra Bold (Ultra Bold) |
  420. +------------+--------------------------------+
  421. | ``900`` | Black (Heavy) |
  422. +------------+--------------------------------+
  423. | ``950`` | Extra Black (Ultra Black) |
  424. +------------+--------------------------------+
  425. You can save the FontVariation to a ``.tres`` resource file to reuse it in other
  426. places:
  427. .. figure:: img/using_fonts_font_variation_save_to_file.webp
  428. :align: center
  429. Saving FontVariation to an external resource file
  430. Faux bold and italic
  431. ^^^^^^^^^^^^^^^^^^^^
  432. When writing text in bold or italic, using font variants specifically designed
  433. for this looks better. Spacing between glyphs will be more consistent when using
  434. a bold font, and certain glyphs' shapes may change entirely in italic variants
  435. (compare "a" and *"a"*).
  436. However, real bold and italic fonts require shipping more font files, which
  437. increases distribution size. A single :ref:`variable font <doc_using_fonts_variable_fonts>`
  438. file can also be used, but this file will be larger than a single non-variable font.
  439. While file size is usually not an issue for desktop projects, it can be a concern
  440. for mobile/web projects that strive to keep distribution size as low as possible.
  441. To allow bold and italic fonts to be displayed without having to ship additional
  442. fonts (or use a variable font that is larger in size), Godot supports *faux*
  443. bold and italic.
  444. .. figure:: img/using_fonts_faux_bold_italic_vs_real_bold_italic.webp
  445. :align: center
  446. :alt: Faux bold/italic (top), real bold/italic (bottom). Normal font used: Open Sans SemiBold
  447. Faux bold/italic (top), real bold/italic (bottom). Normal font used: Open Sans SemiBold
  448. Faux bold and italic is automatically used in :ref:`class_RichTextLabel`'s bold
  449. and italic tags if no custom fonts are provided for bold and/or italic.
  450. To use faux bold, create a FontVariation resource in a property where a Font
  451. resource is expected. Set **Variation > Embolden** to a positive value to make a
  452. font bolder, or to a negative value to make it less bold. Recommended values are
  453. between ``0.5`` and ``1.2`` depending on the font.
  454. Faux italic is created by skewing the text, which is done by modifying the
  455. per-character transform. This is also provided in FontVariation using the
  456. **Variation > Transform** property. Setting the ``yx`` component of the
  457. character transform to a positive value will italicize the text. Recommended
  458. values are between ``0.2`` and ``0.4`` depending on the font.
  459. Adjusting font spacing
  460. ^^^^^^^^^^^^^^^^^^^^^^
  461. For stylistic purposes or for better readability, you may want to adjust how a
  462. font is presented in Godot.
  463. Create a FontVariation resource in a property where a Font resource is expected.
  464. There are 4 properties available in the **Variation > Extra Spacing** section,
  465. which accept positive and negative values:
  466. - **Glyph:** Additional spacing between every glyph.
  467. - **Space:** Additional spacing between words.
  468. - **Top:** Additional spacing above glyphs. This is used for multiline text,
  469. but also to calculate the minimum size of controls such as :ref:`class_Label`
  470. and :ref:`class_Button`.
  471. - **Top:** Additional spacing below glyphs. This is used for multiline text,
  472. but also to calculate the minimum size of controls such as :ref:`class_Label`
  473. and :ref:`class_Button`.
  474. The **Variation > Transform** property can also be adjusted to stretch
  475. characters horizontally or vertically. This is specifically done by adjusting
  476. the ``xx`` (horizontal scale) and ``yy`` (vertical scale) components. Remember
  477. to adjust glyph spacing to account for any changes, as glyph transform doesn't
  478. affect how much space each glyph takes in the text. Non-uniform scaling of this
  479. kind should be used sparingly, as fonts are generally not designed to be
  480. displayed with stretching.
  481. .. _doc_using_fonts_opentype_font_features:
  482. OpenType font features
  483. ^^^^^^^^^^^^^^^^^^^^^^
  484. Godot supports enabling OpenType font features, which are a standardized way to
  485. define alternate characters that can be toggled without having to swap font
  486. files entirely. Despite being named OpenType font features, these are also
  487. supported in TrueType (``.ttf``) and WOFF/WOFF2 font files.
  488. Support for OpenType features highly depends on the font used. Some fonts don't
  489. support any OpenType features, while other fonts can support dozens of
  490. toggleable features.
  491. There are 2 ways to use OpenType font features:
  492. **Globally on a font file**
  493. Open the Advanced Import Settings dialog by double-clicking the font file in the
  494. FileSystem dock. You can also select the font in the FileSystem dock, go to the
  495. Import dock then choose **Advanced…** at the bottom:
  496. .. figure:: img/using_fonts_advanced_import_settings.webp
  497. :align: center
  498. Import dock
  499. In the dialog that appears, look for the **Metadata Overrides > OpenType
  500. Features** section on the sidebar on the right, click the
  501. **Features (0 of N set)** text to expand the property, then click
  502. **Add Feature**:
  503. .. figure:: img/using_fonts_advanced_import_settings_opentype_features.webp
  504. :align: center
  505. OpenType feature overrides in Advanced Import Settings
  506. **In a specific font usage (FontVariation)**
  507. To use a font feature, create a FontVariation resource like you would do for a
  508. :ref:`variable font <doc_using_fonts_variable_fonts>`, then load a font file
  509. within the FontVariation resource:
  510. .. figure:: img/using_fonts_font_variation_create.webp
  511. :align: center
  512. Creating a FontVariation resource
  513. .. figure:: img/using_fonts_font_variation_load.webp
  514. :align: center
  515. Loading a font file into a FontVariation resource
  516. Scroll down to the FontVariation's **OpenType Features** section, click the
  517. **Features (0 of N set)** text to expand the property, then click **Add Feature**
  518. and select the desired feature in the dropdown:
  519. .. figure:: img/using_fonts_font_variation_opentype_features.webp
  520. :align: center
  521. Specifying OpenType features in a FontVariation resource
  522. For example, here's the `Inter <https://rsms.me/inter/>`__ font without the
  523. *Slashed Zero* feature (top), then with the *Slashed Zero* OpenType feature enabled
  524. (bottom):
  525. .. figure:: img/using_fonts_font_variation_slashed_zero.webp
  526. :align: center
  527. OpenType feature comparison (Inter)
  528. You can disable ligatures and/or kerning for a specific font by adding OpenType
  529. features, then unchecking them in the inspector:
  530. .. figure:: img/using_fonts_font_variation_disable_ligatures.webp
  531. :align: center
  532. Disabling ligatures and kerning for a font
  533. .. _doc_using_fonts_system_fonts:
  534. System fonts
  535. ^^^^^^^^^^^^
  536. .. warning::
  537. Loading system fonts is only supported on Windows, macOS, Linux, Android and iOS.
  538. However, loading system fonts on Android is unreliable as there is no
  539. official API for doing so. Godot has to rely on parsing system configuration
  540. files, which can be modified by third-party Android vendors. This may result
  541. in non-functional system font loading.
  542. System fonts are a different type of resource compared to imported fonts. They
  543. are never actually imported into the project, but are loaded at runtime. This
  544. has 2 benefits:
  545. - The fonts are not included within the exported PCK file, leading to a smaller
  546. file size for the exported project.
  547. - Since fonts are not included with the exported project, this avoids licensing
  548. issues that would occur if proprietary system fonts were distributed alongside
  549. the project.
  550. The engine automatically uses system fonts as fallback fonts, which makes it
  551. possible to display CJK characters and emoji without having to load a custom
  552. font. There are some restrictions that apply though, as mentioned in the
  553. :ref:`Using emoji <doc_using_fonts_emoji>` section.
  554. Create a :ref:`class_SystemFont` resource in the location where you desire to
  555. use the system font:
  556. .. figure:: img/using_fonts_system_font_create.webp
  557. :align: center
  558. Creating a SystemFont resource
  559. .. figure:: img/using_fonts_system_font_specify.webp
  560. :align: center
  561. Specifying a font name to use in a SystemFont resource
  562. You can either specify one or more font names explicitly (such as ``Arial``), or
  563. specify the name of a font *alias* that maps to a "standard" default font for
  564. the system:
  565. .. Android font information sourced from <https://android.googlesource.com/platform/frameworks/base/+/master/data/fonts/fonts.xml>
  566. +----------------+-----------------+----------------+-------------------------+-------------------------+
  567. | Font alias | Windows | macOS/iOS | Linux | Android |
  568. +================+=================+================+=========================+=========================+
  569. | ``sans-serif`` | Arial | Helvetica | *Handled by fontconfig* | Roboto / Noto Sans |
  570. +----------------+-----------------+----------------+-------------------------+-------------------------+
  571. | ``serif`` | Times New Roman | Times | *Handled by fontconfig* | Noto Serif |
  572. +----------------+-----------------+----------------+-------------------------+-------------------------+
  573. | ``monospace`` | Courier New | Courier | *Handled by fontconfig* | Droid Sans Mono |
  574. +----------------+-----------------+----------------+-------------------------+-------------------------+
  575. | ``cursive`` | Comic Sans MS | Apple Chancery | *Handled by fontconfig* | Dancing Script |
  576. +----------------+-----------------+----------------+-------------------------+-------------------------+
  577. | ``fantasy`` | Gabriola | Papyrus | *Handled by fontconfig* | Droid Sans Mono |
  578. +----------------+-----------------+----------------+-------------------------+-------------------------+
  579. On Android, Roboto is used for Latin/Cyrillic text and Noto Sans is used for
  580. other languages' glyphs such as CJK. On third-party Android distributions, the
  581. exact font selection may differ.
  582. If specifying more than one font, the first font that is found on the system
  583. will be used (from top to bottom). Font names and aliases are case-insensitive
  584. on all platforms.
  585. Like for font variations, you can save the SystemFont arrangement to a resource
  586. file to reuse it in other places.
  587. Remember that different system fonts have different metrics, which means that
  588. text that can fit within a rectangle on one platform may not be doing so on
  589. another platform. Always reserve some additional space during development so
  590. that labels can extend further if needed.
  591. .. note::
  592. Unlike Windows and macOS/iOS, the set of default fonts shipped on Linux
  593. depends on the distribution. This means that on different Linux
  594. distributions, different fonts may be displayed for a given system font name
  595. or alias.
  596. It is also possible to load fonts at runtime even if they aren't installed on the system.
  597. See :ref:`Runtime loading and saving <doc_runtime_file_loading_and_saving_fonts>`
  598. for details.
  599. .. _doc_using_fonts_font_prerendering:
  600. Font prerendering
  601. ^^^^^^^^^^^^^^^^^
  602. When using traditional rasterized fonts, Godot caches glyphs on a per-font and
  603. per-size basis. This reduces stuttering, but it can still occur the first time a
  604. glyph is displayed when running the project. This can be especially noticeable
  605. at higher font sizes or on mobile devices.
  606. When using MSDF fonts, they only need to be rasterized once to a special signed
  607. distance field texture. This means caching can be done purely on a per-font
  608. basis, without taking the font size into consideration. However, the initial
  609. rendering of MSDF fonts is slower compared to a traditional rasterized font at a
  610. medium size.
  611. To avoid stuttering issues related to font rendering, it is possible to
  612. *prerender* certain glyphs. This can be done for all glyphs you intend to use
  613. (for optimal results), or only for common glyphs that are most likely to appear
  614. during gameplay (to reduce file size). Glyphs that aren't pre-rendered will be
  615. rasterized on-the-fly as usual.
  616. .. note::
  617. In both cases (traditional and MSDF), font rasterization is done on the CPU.
  618. This means that the GPU performance doesn't affect how long it takes for fonts
  619. to be rasterized.
  620. Open the Advanced Import Settings dialog by double-clicking the font file in the
  621. FileSystem dock. You can also select the font in the FileSystem dock, go to the
  622. Import dock then choose **Advanced…** at the bottom:
  623. .. figure:: img/using_fonts_advanced_import_settings.webp
  624. :align: center
  625. Import dock
  626. Move to the **Pre-render Configurations** tab of the Advanced Import Settings dialog,
  627. then add a configuration by clicking the "plus" symbol:
  628. .. figure:: img/using_fonts_advanced_import_settings_prerender_new_configuration.webp
  629. :align: center
  630. :alt: Adding a new prerendering configuration in the Advanced Import Settings dialog
  631. Adding a new prerendering configuration in the Advanced Import Settings dialog
  632. After adding a configuration, make sure it is selected by clicking its name
  633. once. You can also rename the configuration by double-clicking it.
  634. There are 2 ways to add glyphs to be prerendered to a given configuration. It is
  635. possible to use both approaches in a cumulative manner:
  636. **Using text from translations**
  637. For most projects, this approach is the most convenient to use, as it
  638. automatically sources text from your language translations. The downside is that
  639. it can only be used if your project supports
  640. :ref:`internationalization <doc_internationalizing_games>`. Otherwise, stick to
  641. the "Using custom text" approach described below.
  642. After adding translations to the Project Settings, use the
  643. **Glyphs from the Translations** tab to check translations by double-clicking them,
  644. then click **Shape All Strings in the Translations and Add Glyphs** at the bottom:
  645. .. figure:: img/using_fonts_advanced_import_settings_prerender_translation.webp
  646. :align: center
  647. :alt: Enabling prerendering in the Advanced Import Settings dialog with the Glyphs from the Translations tab
  648. Enabling prerendering in the Advanced Import Settings dialog with the **Glyphs from the Translations** tab
  649. .. note::
  650. The list of prerendered glyphs is not automatically updated when
  651. translations are updated, so you need to repeat this process if your
  652. translations have changed significantly.
  653. **Using custom text**
  654. While it requires manually specifying text that will appear in the game, this is
  655. the most efficient approach for games which don't feature user text input. This
  656. approach is worth exploring for mobile games to reduce the file size of the
  657. distributed app.
  658. To use existing text as a baseline for prerendering, go to the **Glyphs from the
  659. Text** sub-tab of the Advanced Import Settings dialog, enter text in the window
  660. on the right, then click **Shape Text and Add Glyphs** at the bottom of the
  661. dialog:
  662. .. figure:: img/using_fonts_advanced_import_settings_prerender_text.webp
  663. :align: center
  664. :alt: Enabling prerendering in the Advanced Import Settings dialog, Glyphs from the Text tab
  665. Enabling prerendering in the Advanced Import Settings dialog with the **Glyphs from the Text** tab
  666. .. tip::
  667. If your project supports :ref:`internationalization <doc_internationalizing_games>`,
  668. you can paste the contents of your CSV or PO files in the above box to quickly
  669. prerender all possible characters that may be rendered during gameplay
  670. (excluding user-provided or non-translatable strings).
  671. **By enabling character sets**
  672. The second method requires less configuration and fewer updates if your game's
  673. text changes, and is more suited to text-heavy games or multiplayer games with
  674. chat. On the other hand, it may cause glyphs that never show up in the game to
  675. be prerendered, which is less efficient in terms of file size.
  676. To use existing text as a baseline for prerendering, go to the **Glyphs from the
  677. Character Map** sub-tab of the Advanced Import Settings dialog, then
  678. *double-click* character sets to be enabled on the right:
  679. .. figure:: img/using_fonts_advanced_import_settings_prerender_character_map.webp
  680. :align: center
  681. :alt: Enabling prerendering in the Advanced Import Settings dialog, Glyphs from the Character Map tab
  682. Enabling prerendering in the Advanced Import Settings dialog with the **Glyphs from the Character Map** tab
  683. To ensure full prerendering, the character sets you need to enable depend on
  684. which languages are supported in your game. For English, only **Basic Latin**
  685. needs to be enabled. Enabling **Latin-1 Supplement** as well allows fully
  686. covering many more languages, such as French, German and Spanish. For Russian,
  687. **Cyrillic** needs to be enabled, and so on.
  688. Default project font properties
  689. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  690. In the **GUI > Theme** section of the advanced Project Settings, you can choose
  691. how the default font should be rendered:
  692. - **Default Font Antialiasing:** Controls the
  693. :ref:`antialiasing <doc_using_fonts_antialiasing>` method used
  694. for the default project font.
  695. - **Default Font Hinting:** Controls the
  696. :ref:`hinting <doc_using_fonts_hinting>` method used for
  697. the default project font.
  698. - **Default Font Subpixel Positioning:** Controls the
  699. :ref:`subpixel positioning <doc_using_fonts_subpixel_positioning>`
  700. method for the default project font.
  701. - **Default Font Multichannel Signed Distance Field:** If ``true``, makes the
  702. default project font use :ref:`MSDF font rendering <doc_using_fonts_msdf>` instead
  703. of traditional rasterization.
  704. - **Default Font Generate Mipmaps:** If ``true``, enables
  705. :ref:`mipmap <doc_using_fonts_mipmaps>` generation and
  706. usage for the default project font.
  707. .. note::
  708. These project settings *only* affect the default project font (the one that
  709. is hardcoded in the engine binary).
  710. Custom fonts' properties are governed by their respective import options
  711. instead. You can use the **Import Defaults** section of the Project Settings
  712. dialog to override default import options for custom fonts.