diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-10-14 19:44:41 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-10-14 19:44:41 -0300 |
commit | cd218b8c09482f9f9f2d15285d55ad955673697f (patch) | |
tree | 60a09595de85ac63027b916dc2344b6612975bf1 /tools/collada | |
parent | 94e35ef316caa0f713eef1c3823c8fa035508090 (diff) |
Fixes
-=-=-
-Fixed normalmap depth parameter
-Fixes to DirAccess on Windows
-Double click on resource dock will open them
-Fixes to doc generator (should make github wiki on class list more up to date)
Diffstat (limited to 'tools/collada')
-rw-r--r-- | tools/collada/collada.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/collada/collada.cpp b/tools/collada/collada.cpp index f2e3a0e813..7f4f92e82d 100644 --- a/tools/collada/collada.cpp +++ b/tools/collada/collada.cpp @@ -444,9 +444,9 @@ Vector<String> Collada::_read_string_array(XMLParser& parser) { // parse String data String str = parser.get_node_data(); array=str.split_spaces(); - for(int i=0;i<array.size();i++) { - print_line(itos(i)+": "+array[i]); - } + //for(int i=0;i<array.size();i++) { + // print_line(itos(i)+": "+array[i]); + //} } else if (parser.get_node_type() == XMLParser::NODE_ELEMENT_END) |