Remove monospace/fixed-width from the ResourceImporterImageFont name and description.

This commit is contained in:
bruvzg 2024-06-18 19:02:51 +03:00
parent 2b11d0ca96
commit 049cf70fbf
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
2 changed files with 3 additions and 3 deletions

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ResourceImporterImageFont" inherits="ResourceImporter" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
<brief_description>
Imports a fixed-width bitmap font where all glyphs have the same width and height.
Imports a bitmap font where all glyphs have the same width and height.
</brief_description>
<description>
This image-based workflow can be easier to use than [ResourceImporterBMFont], but it requires all glyphs to have the same width and height. This makes [ResourceImporterImageFont] most suited to fixed-width fonts.
This image-based workflow can be easier to use than [ResourceImporterBMFont], but it requires all glyphs to have the same width and height, glyph advances and drawing offsets can be customized. This makes [ResourceImporterImageFont] most suited to fixed-width fonts.
See also [ResourceImporterDynamicFont].
</description>
<tutorials>

View file

@ -38,7 +38,7 @@ String ResourceImporterImageFont::get_importer_name() const {
}
String ResourceImporterImageFont::get_visible_name() const {
return "Font Data (Monospace Image Font)";
return "Font Data (Image Font)";
}
void ResourceImporterImageFont::get_recognized_extensions(List<String> *p_extensions) const {