diff --git a/doc/classes/ResourceImporterImageFont.xml b/doc/classes/ResourceImporterImageFont.xml index afc791f87437..6dbfa1d65142 100644 --- a/doc/classes/ResourceImporterImageFont.xml +++ b/doc/classes/ResourceImporterImageFont.xml @@ -1,10 +1,10 @@ - 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. - 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]. diff --git a/editor/import/resource_importer_imagefont.cpp b/editor/import/resource_importer_imagefont.cpp index 22223bda94b1..f1b6d3a6ac7d 100644 --- a/editor/import/resource_importer_imagefont.cpp +++ b/editor/import/resource_importer_imagefont.cpp @@ -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 *p_extensions) const {