diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-20 19:18:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 19:18:53 +0200 |
commit | aada93afc0ecc699440805ad2574d3e94b7c0abd (patch) | |
tree | 7c6d3a56aed7ecdbc0e2ad31a56bbdab6eeb4967 /doc/classes | |
parent | 173ebe487284fddb9f07cdf90ef58cb1c9f69b74 (diff) | |
parent | 80a5df48215f4e18b34e3533cb950a7a94e89cd6 (diff) |
Merge pull request #40491 from RandomShaper/font_avail_chars
Add DynamicFont::get_available_chars()
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/DynamicFont.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/DynamicFont.xml b/doc/classes/DynamicFont.xml index 0864c3ba36..24df056c6b 100644 --- a/doc/classes/DynamicFont.xml +++ b/doc/classes/DynamicFont.xml @@ -26,6 +26,14 @@ Adds a fallback font. </description> </method> + <method name="get_available_chars" qualifiers="const"> + <return type="String"> + </return> + <description> + Returns a string containing all the characters available in the main and all the fallback fonts. + If a given character is included in more than one font, it appears only once in the returned string. + </description> + </method> <method name="get_fallback" qualifiers="const"> <return type="DynamicFontData"> </return> |