You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Double precision of String.split_floats
This commit is contained in:
@@ -1256,8 +1256,8 @@ Vector<String> String::rsplit(const String &p_splitter, bool p_allow_empty, int
|
||||
return ret;
|
||||
}
|
||||
|
||||
Vector<float> String::split_floats(const String &p_splitter, bool p_allow_empty) const {
|
||||
Vector<float> ret;
|
||||
Vector<double> String::split_floats(const String &p_splitter, bool p_allow_empty) const {
|
||||
Vector<double> ret;
|
||||
int from = 0;
|
||||
int len = length();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user