diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-07-24 00:18:39 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-07-24 00:18:39 +0200 |
commit | 09422740a4dbb21d719b5cc34fc19b6f6ff6ae51 (patch) | |
tree | 112cc8c9f20b0979f44a88d665a830a9246c104e /src/client/camera.cpp | |
parent | b7767dd9aae27f0fe6b7ae3b99d0f51860979f82 (diff) | |
download | minetest-09422740a4dbb21d719b5cc34fc19b6f6ff6ae51.tar.xz |
Add setting to mirror handsmirror_hands
Diffstat (limited to 'src/client/camera.cpp')
-rw-r--r-- | src/client/camera.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/camera.cpp b/src/client/camera.cpp index 5ca4e4908..3b4c2fad8 100644 --- a/src/client/camera.cpp +++ b/src/client/camera.cpp @@ -45,7 +45,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define WIELDMESH_AMPLITUDE_X 7.0f #define WIELDMESH_AMPLITUDE_Y 10.0f -#define HANDS (int i = 0, s = +1; i <= 1; i++, s *= -1) // i is index, s is sign +#define HANDS (int i = 0, s = +1; i <= +1; i++, s = -1, (void) s) // i is index, s is sign Camera::Camera(MapDrawControl &draw_control, Client *client, RenderingEngine *rendering_engine): m_draw_control(draw_control), @@ -529,6 +529,9 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) m_player_light_color = player->light_color; for HANDS { + if (g_settings->getBool("mirror_hands")) + s *= -1; + // Position the wielded item //v3f wield_position = v3f(45, -35, 65); v3f wield_position = v3f(m_wieldmesh_offset.X, m_wieldmesh_offset.Y, 65); |