summaryrefslogtreecommitdiffstats
path: root/servers/text_server.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2021-03-06 11:52:16 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2021-10-01 16:45:16 +0300
commitdaa613333ec4ac53964e2ba3f22f10e0f5212991 (patch)
tree04308e3c942342e03405ce129896546a497cb3ed /servers/text_server.cpp
parent928c002f223b67bd6fd1c55d65e37a6d5c4e3a94 (diff)
downloadredot-engine-daa613333ec4ac53964e2ba3f22f10e0f5212991.tar.gz
[Text Server] Add support for user defined punctuation list, used for word breaking.
Diffstat (limited to 'servers/text_server.cpp')
-rw-r--r--servers/text_server.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/servers/text_server.cpp b/servers/text_server.cpp
index a365fde64a..37020db587 100644
--- a/servers/text_server.cpp
+++ b/servers/text_server.cpp
@@ -342,6 +342,9 @@ void TextServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("shaped_text_set_bidi_override", "shaped", "override"), &TextServer::shaped_text_set_bidi_override);
+ ClassDB::bind_method(D_METHOD("shaped_text_set_custom_punctuation", "shaped", "punct"), &TextServer::shaped_text_set_custom_punctuation);
+ ClassDB::bind_method(D_METHOD("shaped_text_get_custom_punctuation", "shaped"), &TextServer::shaped_text_get_custom_punctuation);
+
ClassDB::bind_method(D_METHOD("shaped_text_set_orientation", "shaped", "orientation"), &TextServer::shaped_text_set_orientation, DEFVAL(ORIENTATION_HORIZONTAL));
ClassDB::bind_method(D_METHOD("shaped_text_get_orientation", "shaped"), &TextServer::shaped_text_get_orientation);