diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-07-13 02:25:33 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-07-27 19:18:27 +0200 |
commit | bc58a8a34e3a2ed93439ff86a510f42970ea8c8d (patch) | |
tree | 010bbbcf261f19a35e4fc6ec3d5c580f1c68747a /doc/classes/ResourceImporterBMFont.xml | |
parent | 60f3b7967cbd00b4e1f52d33d372646f7bec02f6 (diff) | |
download | redot-engine-bc58a8a34e3a2ed93439ff86a510f42970ea8c8d.tar.gz |
Fill in descriptions for import options in the class reference
Diffstat (limited to 'doc/classes/ResourceImporterBMFont.xml')
-rw-r--r-- | doc/classes/ResourceImporterBMFont.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/ResourceImporterBMFont.xml b/doc/classes/ResourceImporterBMFont.xml index de01f98b28..3ec2e4afb7 100644 --- a/doc/classes/ResourceImporterBMFont.xml +++ b/doc/classes/ResourceImporterBMFont.xml @@ -1,15 +1,22 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="ResourceImporterBMFont" inherits="ResourceImporter" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> <brief_description> + Imports a bitmap font in the BMFont ([code].fnt[/code]) format. </brief_description> <description> + The BMFont format is a format created by the [url=https://www.angelcode.com/products/bmfont/]BMFont[/url] program. Many BMFont-compatible programs also exist, like [url=https://www.bmglyph.com/]BMGlyph[/url]. + Compared to [ResourceImporterImageFont], [ResourceImporterBMFont] supports bitmap fonts with varying glyph widths/heights. + See also [ResourceImporterDynamicFont]. </description> <tutorials> + <link title="Bitmap fonts - Using fonts">$DOCS_URL/tutorials/ui/gui_using_fonts.html#bitmap-fonts</link> </tutorials> <members> <member name="compress" type="bool" setter="" getter="" default="true"> + If [code]true[/code], uses lossless compression for the resulting font. </member> <member name="fallbacks" type="Array" setter="" getter="" default="[]"> + List of font fallbacks to use if a glyph isn't found in this bitmap font. Fonts at the beginning of the array are attempted first. </member> </members> </class> |