Merge pull request #74149 from bruvzg/get_char

[Font] Implement `get_char_from_glyph_index` function.
This commit is contained in:
Yuri Sizov
2023-03-16 13:07:11 +01:00
committed by GitHub
13 changed files with 83 additions and 1 deletions

View File

@ -687,6 +687,7 @@ public:
MODBIND3RC(Vector2, font_get_kerning, const RID &, int64_t, const Vector2i &);
MODBIND4RC(int64_t, font_get_glyph_index, const RID &, int64_t, int64_t, int64_t);
MODBIND3RC(int64_t, font_get_char_from_glyph_index, const RID &, int64_t, int64_t);
MODBIND2RC(bool, font_has_char, const RID &, int64_t);
MODBIND1RC(String, font_get_supported_chars, const RID &);