diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 19:00:50 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 19:00:50 -0300 |
commit | 23e13ce3c209da13a7bbf771cf31588045ad432e (patch) | |
tree | cef883c01a1662a2f2e08ce85e639a4b49175985 /tools/editor/io_plugins | |
parent | e9f94ce8d2cc6805e74fffdf733e6dc5b5c530f5 (diff) |
fixes to new window management API
-needs testing on Linux
-needs testing on Windows
-NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP!
Diffstat (limited to 'tools/editor/io_plugins')
-rw-r--r-- | tools/editor/io_plugins/editor_import_collada.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/io_plugins/editor_import_collada.cpp b/tools/editor/io_plugins/editor_import_collada.cpp index d2c9f395d2..f113bd3593 100644 --- a/tools/editor/io_plugins/editor_import_collada.cpp +++ b/tools/editor/io_plugins/editor_import_collada.cpp @@ -1360,9 +1360,9 @@ Error ColladaImport::_create_mesh_surfaces(Ref<Mesh>& p_mesh,const Map<String,Co if(md.vertices[vertex_src_id].sources.has("NORMAL")){ //has normals normals.resize(vlen); - std::cout << "has normals" << std::endl; + //std::cout << "has normals" << std::endl; String normal_src_id = md.vertices[vertex_src_id].sources["NORMAL"]; - std::cout << "normals source: "<< normal_src_id.utf8().get_data() <<std::endl; + //std::cout << "normals source: "<< normal_src_id.utf8().get_data() <<std::endl; ERR_FAIL_COND_V(!md.sources.has(normal_src_id),ERR_INVALID_DATA); const Collada::MeshData::Source *m=&md.sources[normal_src_id]; |