diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-04-05 18:50:09 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-04-05 18:50:09 -0300 |
commit | b4969373b3475799d6b24cdffeda4659c37f0b8a (patch) | |
tree | 5cafdea68a5fe1f79c343c7cdf8def821e7f0b05 /core/variant.cpp | |
parent | 9f33134c93ecbadda70e8eefc50563e29b2eb7f2 (diff) | |
download | redot-engine-b4969373b3475799d6b24cdffeda4659c37f0b8a.tar.gz |
-HttpClient: ’Content-Length’ is added to httprequest if not provided in the headers and a body exists
-expressions in GDScript can take multiple lines if inside parenthesis (python-like)
-Added \ to force linebreaks to GDscript (python-like)
-added exclude objects from raycast
-fixed crashes
Diffstat (limited to 'core/variant.cpp')
-rw-r--r-- | core/variant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant.cpp b/core/variant.cpp index efb6b8296b..e02c9c33a1 100644 --- a/core/variant.cpp +++ b/core/variant.cpp @@ -56,7 +56,7 @@ String Variant::get_type_name(Variant::Type p_type) { } break; case REAL: { - return "real"; + return "float"; } break; case STRING: { |