diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-11 15:56:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 15:56:59 +0200 |
commit | 6107d9e180a51e3c9feb4fe8c818321c292ff86b (patch) | |
tree | b68193719f071aa98f38bb2cefc182b953b10963 /core/core_bind.h | |
parent | e82a1113abbb72504e9b12a131738bedb40d3a28 (diff) | |
parent | 09a905ca8066c86951b23023a9e1950f277ae8f4 (diff) | |
download | redot-engine-6107d9e180a51e3c9feb4fe8c818321c292ff86b.tar.gz |
Merge pull request #34566 from Heikki00/34541_to_json_precision
Increased String::num default decimal precision
Diffstat (limited to 'core/core_bind.h')
-rw-r--r-- | core/core_bind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.h b/core/core_bind.h index c8b0a4d7da..7323320684 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -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; } |