diff options
author | MJacred <loesch.benny92@gmx.de> | 2024-05-02 21:32:20 +0200 |
---|---|---|
committer | MJacred <loesch.benny92@gmx.de> | 2024-05-02 21:32:20 +0200 |
commit | 717513a62d971681a342303216143b30c5d20d4b (patch) | |
tree | d98233123b96a93f965e3f958d578fc11a60b6c5 /servers/text_server.cpp | |
parent | 23191b834e4609baacf19855c3acb6a9f607b30f (diff) | |
download | redot-engine-717513a62d971681a342303216143b30c5d20d4b.tar.gz |
Add is_valid_letter() to TextServer
Diffstat (limited to 'servers/text_server.cpp')
-rw-r--r-- | servers/text_server.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/servers/text_server.cpp b/servers/text_server.cpp index b67a698615..34daa4b414 100644 --- a/servers/text_server.cpp +++ b/servers/text_server.cpp @@ -483,6 +483,7 @@ void TextServer::_bind_methods() { ClassDB::bind_method(D_METHOD("strip_diacritics", "string"), &TextServer::strip_diacritics); ClassDB::bind_method(D_METHOD("is_valid_identifier", "string"), &TextServer::is_valid_identifier); + ClassDB::bind_method(D_METHOD("is_valid_letter", "unicode"), &TextServer::is_valid_letter); ClassDB::bind_method(D_METHOD("string_to_upper", "string", "language"), &TextServer::string_to_upper, DEFVAL("")); ClassDB::bind_method(D_METHOD("string_to_lower", "string", "language"), &TextServer::string_to_lower, DEFVAL("")); @@ -2091,6 +2092,10 @@ bool TextServer::is_valid_identifier(const String &p_string) const { return true; } +bool TextServer::is_valid_letter(char32_t p_unicode) const { + return is_unicode_letter(p_unicode); +} + TextServer::TextServer() { _init_diacritics_map(); } |