You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Merge pull request #71598 from bruvzg/gdscript_bidi_override
Implement BiDi override mode for GDScript source.
This commit is contained in:
@@ -2765,9 +2765,9 @@ void Control::end_bulk_theme_override() {
|
||||
|
||||
// Internationalization.
|
||||
|
||||
TypedArray<Vector2i> Control::structured_text_parser(TextServer::StructuredTextParser p_parser_type, const Array &p_args, const String &p_text) const {
|
||||
TypedArray<Vector3i> Control::structured_text_parser(TextServer::StructuredTextParser p_parser_type, const Array &p_args, const String &p_text) const {
|
||||
if (p_parser_type == TextServer::STRUCTURED_TEXT_CUSTOM) {
|
||||
TypedArray<Vector2i> ret;
|
||||
TypedArray<Vector3i> ret;
|
||||
GDVIRTUAL_CALL(_structured_text_parser, p_args, p_text, ret);
|
||||
return ret;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user