We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7827302 commit 8dc70ebCopy full SHA for 8dc70eb
src/client/clientmap.cpp
@@ -124,7 +124,10 @@ void ClientMap::updateDrawList()
124
125
const v3f camera_position = m_camera_position;
126
const v3f camera_direction = m_camera_direction;
127
- const f32 camera_fov = m_camera_fov;
+
128
+ // Use a higher fov to accomodate faster camera movements.
129
+ // Blocks are cropped better when they are drawn.
130
+ const f32 camera_fov = m_camera_fov * 1.1f;
131
132
v3s16 cam_pos_nodes = floatToInt(camera_position, BS);
133
v3s16 p_blocks_min;
0 commit comments