mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
[Export] Write text server data from memory, instead of using temporary file.
This commit is contained in:
parent
d741a646a5
commit
c5ca56f40b
13 changed files with 88 additions and 19 deletions
|
@ -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.
|
||||
}
|
||||
|
|
|
@ -592,6 +592,7 @@ public:
|
|||
MODBIND0RC(String, get_support_data_filename);
|
||||
MODBIND0RC(String, get_support_data_info);
|
||||
MODBIND1RC(bool, save_support_data, const String &);
|
||||
MODBIND0RC(PackedByteArray, get_support_data);
|
||||
|
||||
MODBIND1RC(bool, is_locale_right_to_left, const String &);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue