diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-02-25 00:53:04 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-02-25 00:53:04 +0100 |
commit | 42305cd3b9942ba07fbae85a855ad23f1ad044a2 (patch) | |
tree | 33deeab772f64612fc0217a4ad57cc8493625af1 /editor | |
parent | da0e08d717d774c9f1b5fc3509e2f837d3b4701f (diff) |
kill lqt
Diffstat (limited to 'editor')
-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() |