You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
[TextServer] Expose ICU title case string conversion to scripting.
This commit is contained in:
@@ -4439,6 +4439,10 @@ String TextServerFallback::_string_to_lower(const String &p_string, const String
|
||||
return p_string.to_lower();
|
||||
}
|
||||
|
||||
String TextServerFallback::_string_to_title(const String &p_string, const String &p_language) const {
|
||||
return p_string.capitalize();
|
||||
}
|
||||
|
||||
PackedInt32Array TextServerFallback::_string_get_word_breaks(const String &p_string, const String &p_language, int64_t p_chars_per_line) const {
|
||||
PackedInt32Array ret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user