diff options
Diffstat (limited to 'editor/draw.cpp')
-rw-r--r-- | editor/draw.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/draw.cpp b/editor/draw.cpp index baf7f135..4e175ab4 100644 --- a/editor/draw.cpp +++ b/editor/draw.cpp @@ -7,7 +7,6 @@ #include "draw/anim.hpp" #include "src/camera-offset.hpp" #include "src/world.hpp" -#include "src/collision.hpp" #include <Magnum/Math/Color.h> #include <Magnum/Math/Vector3.h> @@ -61,6 +60,7 @@ void app::draw_cursor() void app::draw_collision_boxes() { +#if 0 const auto [minx, maxx, miny, maxy] = M->get_draw_bounds(); const auto sz = M->window_size(); auto& world = M->world(); @@ -97,6 +97,7 @@ void app::draw_collision_boxes() } } shader.set_tint({1, 1, 1, 1}); +#endif } void app::draw() |