You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
Docs: Ignore OS specific values (constants, project settings, properties).
This commit is contained in:
@@ -1025,6 +1025,9 @@ String String::chr(CharType p_char) {
|
||||
}
|
||||
|
||||
String String::num(double p_num, int p_decimals) {
|
||||
if (Math::is_nan(p_num)) {
|
||||
return "nan";
|
||||
}
|
||||
#ifndef NO_USE_STDLIB
|
||||
|
||||
if (p_decimals > 16) {
|
||||
@@ -1313,6 +1316,9 @@ String String::num_real(double p_num) {
|
||||
}
|
||||
|
||||
String String::num_scientific(double p_num) {
|
||||
if (Math::is_nan(p_num)) {
|
||||
return "nan";
|
||||
}
|
||||
#ifndef NO_USE_STDLIB
|
||||
|
||||
char buf[256];
|
||||
|
||||
Reference in New Issue
Block a user