diff options
author | TriBlade9 <triblade9@mail.com> | 2014-09-17 18:02:40 +0800 |
---|---|---|
committer | RealBadAngel <maciej.kasatkin@o2.pl> | 2014-09-19 03:28:46 +0200 |
commit | 18bfa1c785a123499ee12d0551a9447a4d32d93b (patch) | |
tree | 02b821b2819c62f009ade17011cef8221b54defc /src/drawscene.cpp | |
parent | 86a0f5603b9e936b8527ae22c4aeaf5714c9d279 (diff) | |
download | minetest-18bfa1c785a123499ee12d0551a9447a4d32d93b.tar.gz minetest-18bfa1c785a123499ee12d0551a9447a4d32d93b.tar.bz2 minetest-18bfa1c785a123499ee12d0551a9447a4d32d93b.zip |
Added configurable selectionbox width. Min width = 1, Max = 5
Diffstat (limited to 'src/drawscene.cpp')
-rw-r--r-- | src/drawscene.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/drawscene.cpp b/src/drawscene.cpp index 08b089908..2080ccb73 100644 --- a/src/drawscene.cpp +++ b/src/drawscene.cpp @@ -30,15 +30,18 @@ typedef enum { EYECOUNT = 2 } paralax_sign; + void draw_selectionbox(video::IVideoDriver* driver, Hud& hud, std::vector<aabb3f>& hilightboxes, bool show_hud) { + static const s16 selectionbox_width = rangelim(g_settings->getS16("selectionbox_width"), 1, 5); + if (!show_hud) return; video::SMaterial oldmaterial = driver->getMaterial2D(); video::SMaterial m; - m.Thickness = 3; + m.Thickness = selectionbox_width; m.Lighting = false; driver->setMaterial(m); hud.drawSelectionBoxes(hilightboxes); |