summaryrefslogtreecommitdiff
path: root/editor/doc
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2019-09-14 00:37:42 -0300
committerJuan Linietsky <reduzio@gmail.com>2020-02-11 12:01:22 +0100
commit6deffa62fbd1e91873afa663630b788b9ffabee3 (patch)
treee77c1a67c8b8ddb64429280131502f64c8cd8e8c /editor/doc
parent9d7b7f931b6924399903e4954a0c32d59c15d4c3 (diff)
Several fixes to 3D rendering, and multimesh implementation.
Diffstat (limited to 'editor/doc')
-rw-r--r--editor/doc/doc_data.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp
index 0d9e53c71c..c128ca4321 100644
--- a/editor/doc/doc_data.cpp
+++ b/editor/doc/doc_data.cpp
@@ -304,6 +304,8 @@ void DocData::generate(bool p_basic_types) {
}
}
+ //used to track uninitialized values using valgrind
+ //print_line("getting default value for " + String(name) + "." + String(E->get().name));
if (default_value_valid && default_value.get_type() != Variant::OBJECT) {
prop.default_value = default_value.get_construct_string().replace("\n", "");
}