mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 23:03:46 +01:00
Fix arm inertia limit case
This commit is contained in:
parent
53a6b5439e
commit
48cd217e3b
@ -197,13 +197,17 @@ void Camera::step(f32 dtime)
|
|||||||
|
|
||||||
void Camera::addArmInertia(f32 player_yaw, f32 frametime)
|
void Camera::addArmInertia(f32 player_yaw, f32 frametime)
|
||||||
{
|
{
|
||||||
if (m_timer.X == 0.0f)
|
if (m_timer.X == 0.0f) {
|
||||||
m_cam_vel.X = std::fabs((m_last_cam_pos.X - player_yaw)) * 0.01f;
|
// In the limit case where timer is 0 set a static velocity (generic case divide by zero)
|
||||||
|
m_cam_vel.X = 1.0001f;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
m_cam_vel.X = std::fabs((m_last_cam_pos.X - player_yaw) / m_timer.X) * 0.01f;
|
m_cam_vel.X = std::fabs((m_last_cam_pos.X - player_yaw) / m_timer.X) * 0.01f;
|
||||||
|
|
||||||
if (m_timer.Y == 0.0f)
|
if (m_timer.Y == 0.0f) {
|
||||||
m_cam_vel.Y = std::fabs(m_last_cam_pos.Y - m_camera_direction.Y);
|
// In the limit case where timer is 0 set a static velocity (generic case divide by zero)
|
||||||
|
m_cam_vel.Y = 1.0001f;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
m_cam_vel.Y = std::fabs((m_last_cam_pos.Y - m_camera_direction.Y) / m_timer.Y);
|
m_cam_vel.Y = std::fabs((m_last_cam_pos.Y - m_camera_direction.Y) / m_timer.Y);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user