1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

[Export] Write text server data from memory, instead of using temporary file.

This commit is contained in:
Pāvels Nadtočajevs
2024-11-13 08:03:40 +02:00
parent d741a646a5
commit c5ca56f40b
13 changed files with 88 additions and 19 deletions

View File

@@ -170,6 +170,10 @@ bool TextServerFallback::_save_support_data(const String &p_filename) const {
return false; // No extra data used.
}
PackedByteArray TextServerFallback::_get_support_data() const {
return PackedByteArray(); // No extra data used.
}
bool TextServerFallback::_is_locale_right_to_left(const String &p_locale) const {
return false; // No RTL support.
}