diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-09-03 14:53:17 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-09-03 14:54:15 -0300 |
commit | adde89e8b1c66b4f4814c3b47a5d347ff576428b (patch) | |
tree | 5ae201a8f957bb934a8386921c204a26491c5359 /modules/gridmap/grid_map.cpp | |
parent | 29db531fc8360b1e6d5e23008b208517b6d8c627 (diff) | |
download | redot-engine-adde89e8b1c66b4f4814c3b47a5d347ff576428b.tar.gz |
-Added an optimization so physics shapes are configured later, speeds up grid map loading and editing
Diffstat (limited to 'modules/gridmap/grid_map.cpp')
-rw-r--r-- | modules/gridmap/grid_map.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/gridmap/grid_map.cpp b/modules/gridmap/grid_map.cpp index 1b932f040e..ced1c3ca12 100644 --- a/modules/gridmap/grid_map.cpp +++ b/modules/gridmap/grid_map.cpp @@ -396,8 +396,6 @@ bool GridMap::_octant_update(const OctantKey &p_key) { Map<int, List<Pair<Transform, IndexKey> > > multimesh_items; - print_line("updating octant " + itos(p_key.x) + ", " + itos(p_key.y) + ", " + itos(p_key.z) + " cells: " + itos(g.cells.size())); - for (Set<IndexKey>::Element *E = g.cells.front(); E; E = E->next()) { ERR_CONTINUE(!cell_map.has(E->get())); @@ -464,7 +462,6 @@ bool GridMap::_octant_update(const OctantKey &p_key) { //update multimeshes for (Map<int, List<Pair<Transform, IndexKey> > >::Element *E = multimesh_items.front(); E; E = E->next()) { - print_line("multimesh item " + itos(E->key()) + " transforms " + itos(E->get().size())); Octant::MultimeshInstance mmi; RID mm = VS::get_singleton()->multimesh_create(); |