diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-02-15 10:46:23 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-02-15 10:46:23 +0200 |
commit | f4d095cdd3d04b3215d42928e6b7ac412d78c4c5 (patch) | |
tree | c7f72b7c756139f950c95c705ed35ae8d62b4024 /modules/gdnative/include | |
parent | 8fa92c70eacd180866535a42d409e1c9e1074d73 (diff) |
[TextServer] Restore character and space extra spacing support.
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/text/godot_text.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdnative/include/text/godot_text.h b/modules/gdnative/include/text/godot_text.h index 44fac3c190..ef60633a3d 100644 --- a/modules/gdnative/include/text/godot_text.h +++ b/modules/gdnative/include/text/godot_text.h @@ -79,6 +79,10 @@ typedef struct { float (*font_get_descent)(void *, godot_rid *, int); float (*font_get_underline_position)(void *, godot_rid *, int); float (*font_get_underline_thickness)(void *, godot_rid *, int); + int (*font_get_spacing_space)(void *, godot_rid *); + void (*font_set_spacing_space)(void *, godot_rid *, int); + int (*font_get_spacing_glyph)(void *, godot_rid *); + void (*font_set_spacing_glyph)(void *, godot_rid *, int); void (*font_set_antialiased)(void *, godot_rid *, bool); bool (*font_get_antialiased)(void *, godot_rid *); godot_dictionary (*font_get_feature_list)(void *, godot_rid *); |