Skip to content

Commit dc6318b

Browse files
authoredJul 5, 2020
Apply camera smoothing to 'air stepheight' (#10025)
Recent changes to collision code have changed the behaviour of the 'touching_ground' bool in movement code. This had the effect of disabling camera smoothing when 'air stepheight' occurred when jumping onto a node while pressing forwards against the node, causing an unpleasant sharp camera movement. Rewrite the conditions for camera smoothing such that it is applied when jumping.
1 parent da71313 commit dc6318b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed
 

‎src/client/camera.cpp

+9-8
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,13 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime, f32 tool_r
342342
if (player->getParent())
343343
player_position = player->getParent()->getPosition();
344344

345-
if(player->touching_ground &&
346-
player_position.Y > old_player_position.Y)
347-
{
345+
// Smooth the camera movement when the player instantly moves upward due to stepheight.
346+
// To smooth the 'not touching_ground' stepheight, smoothing is necessary when jumping
347+
// or swimming (for when moving from liquid to land).
348+
// Disable smoothing if climbing or flying, to avoid upwards offset of player model
349+
// when seen in 3rd person view.
350+
bool flying = g_settings->getBool("free_move") && m_client->checkLocalPrivilege("fly");
351+
if (player_position.Y > old_player_position.Y && !player->is_climbing && !flying) {
348352
f32 oldy = old_player_position.Y;
349353
f32 newy = player_position.Y;
350354
f32 t = std::exp(-23 * frametime);
@@ -607,14 +611,11 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime, f32 tool_r
607611
const bool walking = movement_XZ && player->touching_ground;
608612
const bool swimming = (movement_XZ || player->swimming_vertical) && player->in_liquid;
609613
const bool climbing = movement_Y && player->is_climbing;
610-
if ((walking || swimming || climbing) &&
611-
(!g_settings->getBool("free_move") || !m_client->checkLocalPrivilege("fly"))) {
614+
if ((walking || swimming || climbing) && !flying) {
612615
// Start animation
613616
m_view_bobbing_state = 1;
614617
m_view_bobbing_speed = MYMIN(speed.getLength(), 70);
615-
}
616-
else if (m_view_bobbing_state == 1)
617-
{
618+
} else if (m_view_bobbing_state == 1) {
618619
// Stop animation
619620
m_view_bobbing_state = 2;
620621
m_view_bobbing_speed = 60;

0 commit comments

Comments
 (0)
Please sign in to comment.