Why is this Happening? and How Can i Fix It?
I Tried ways like reversing Words, Letters etc but doesn’t work.
And I Should add That I Tried Both From Code and From Engine, But they have Same Problem
Tnx
Hey!
This is the problem of Godot not supporting Persian/Arabic
You can use stable Godot (version 4.0 stable) which supports RTL languages.
Of course, you can split your string with ‘\n’ and reverse the resulting array.
var str= "سلام\nخوبی؟"
print(str)
var str_array = str.split("\n")
str_array.reverse()
print(str_array.join("\n"))