summaryrefslogtreecommitdiffstats
path: root/editor/import/resource_importer_imagefont.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [ImageFont] Fix escape sequence parsing, add note to the docs.bruvzg2024-09-161-2/+4
| | | | (cherry picked from commit 4cc065c2db8cdd0ac3a3bea650a51a10a52d446b)
* Remove `monospace/fixed-width` from the `ResourceImporterImageFont` name and ↵bruvzg2024-06-191-1/+1
| | | | description.
* [Image Font Importer] Adds support for `\uXXXX` in the kerning config strings.bruvzg2024-06-131-3/+22
|
* [Image Font Importer] Fix reading advance after hex/dec range.bruvzg2024-06-121-0/+2
|
* Fixed decimal and hex ranges not working with image fontsGaktan2024-05-131-12/+20
|
* Editor: Disallow font image rows/columns to be zero or lessAlistair Leslie-Hughes2024-05-121-2/+4
| | | | Fixes #91812
* [Font] Allow overriding advances, offsets and kerning in the ImageFont ↵bruvzg2024-02-131-38/+173
| | | | import settings. Fix bitmap font kerning override.
* Don't use TTR/RTR for ERR/WARN printsRémi Verschelde2023-11-121-3/+3
| | | | We don't translate those, only editor strings are translated.
* [Bitmap fonts] Add support for scaling.bruvzg2023-10-131-0/+3
|
* Fix typo in ResourceImporterImageFontHaoyu Qiu2023-07-211-1/+1
|
* [Image Font] Fix fractional ascent for font with odd height.bruvzg2023-04-161-1/+1
|
* [Bitmap Font] Fix character count check.bruvzg2023-02-081-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-0/+1
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Add MAKE_RESOURCE_TYPE_HINT macro to simplify binding arrays of resourcesRémi Verschelde2022-11-241-1/+1
|
* [Image Font Importer] Hide unused font size, add image and character margins.bruvzg2022-11-101-21/+28
|
* Add font LCD sub-pixel anti-aliasing support.bruvzg2022-08-231-1/+1
|
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-1/+1
|
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-5/+10
|
* i18n: Misc fixes translation stringsRémi Verschelde2022-06-081-1/+1
| | | | Adds some translator comments to solve some questions raised on Weblate.
* Replace most uses of Map by HashMapreduz2022-05-161-2/+2
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Implement Label3D node.bruvzg2022-04-221-0/+1
| | | | | | | | | Add "generate_mipmap" font import option. Add some missing features to the Sprite3D. Move BiDi override code from Control to TextServer. Add functions to access TextServer font cache textures. Add MSDF related flags and shader to the standard material. Change standard material cache to use HashMap instead of Vector.
* Add sub-pixel glyph positioning support.bruvzg2022-02-121-0/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add path to functions that return iporter optionsreduz2021-11-141-2/+2
| | | | | | | -Allows displaying custom options for specific file format variants -Added support for scene format import to retrieve custom options This PR is necessary for #54886 to be implemented properly.
* Makes FontData importable resource.bruvzg2021-08-271-0/+162
Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support.