Merge pull request #34566 from Heikki00/34541_to_json_precision

Increased String::num default decimal precision
This commit is contained in:
Rémi Verschelde
2021-06-11 15:56:59 +02:00
committed by GitHub
7 changed files with 47 additions and 22 deletions

View File

@ -706,7 +706,7 @@ protected:
public:
static _JSON *get_singleton() { return singleton; }
String print(const Variant &p_value, const String &p_indent = "", bool p_sort_keys = false);
String print(const Variant &p_value, const String &p_indent = "", bool p_sort_keys = false, bool p_full_precision = false);
Ref<JSONParseResult> parse(const String &p_json);
_JSON() { singleton = this; }