Merge pull request #93337 from bruvzg/rename_img_fnt_imp

Remove `monospace/fixed-width` from the `ResourceImporterImageFont` name and description.
This commit is contained in:
Rémi Verschelde 2024-06-19 10:10:21 +02:00
commit e5ed515f24
No known key found for this signature in database
GPG Key ID: C3336907360768E1
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 {