diff options
author | Heikki Simojoki <heikki.simojoki@gmail.com> | 2019-12-23 17:38:33 +0200 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-05-29 11:24:57 -0400 |
commit | 09a905ca8066c86951b23023a9e1950f277ae8f4 (patch) | |
tree | 8dd07afa6032e2cbd7349a94251676bd15500f63 /core/core_bind.cpp | |
parent | b63f9b59615a4a63f1a45564d78243a2929c3c03 (diff) | |
download | redot-engine-09a905ca8066c86951b23023a9e1950f277ae8f4.tar.gz |
Increase String::num default decimal precision
Fixes #34541
Renamed MAX_DIGITS to MAX_DECIMALS, since it only changes the
amount of digits after the decimal point.
Increased MAX_DECIMALS to 32, and made String::num use
MAX_DECIMALS consistently. If -1 is passed as
decimal precision to String::num, it now gets changed to
the correct precision based on the number's magnitude,
instead of using printf default(which is 6)
String::num_real also calculates the correct precision now.
Also made the types used in floating-point math more
consistent in a few places.
Diffstat (limited to 'core/core_bind.cpp')
-rw-r--r-- | core/core_bind.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp index b8c448dc82..c3e4066c4b 100644 --- a/core/core_bind.cpp +++ b/core/core_bind.cpp @@ -2415,12 +2415,12 @@ Variant JSONParseResult::get_result() const { } void _JSON::_bind_methods() { - ClassDB::bind_method(D_METHOD("print", "value", "indent", "sort_keys"), &_JSON::print, DEFVAL(String()), DEFVAL(false)); + ClassDB::bind_method(D_METHOD("print", "value", "indent", "sort_keys", "full_precision"), &_JSON::print, DEFVAL(String()), DEFVAL(false), DEFVAL(false)); ClassDB::bind_method(D_METHOD("parse", "json"), &_JSON::parse); } -String _JSON::print(const Variant &p_value, const String &p_indent, bool p_sort_keys) { - return JSON::print(p_value, p_indent, p_sort_keys); +String _JSON::print(const Variant &p_value, const String &p_indent, bool p_sort_keys, bool p_full_precision) { + return JSON::print(p_value, p_indent, p_sort_keys, p_full_precision); } Ref<JSONParseResult> _JSON::parse(const String &p_json) { |