diff --git a/voxygen/src/scene/camera.rs b/voxygen/src/scene/camera.rs index 719da0f351..9e92319452 100644 --- a/voxygen/src/scene/camera.rs +++ b/voxygen/src/scene/camera.rs @@ -4,7 +4,7 @@ use frustum_query::frustum::Frustum; use std::f32::consts::PI; use vek::*; -const NEAR_PLANE: f32 = 0.1; +const NEAR_PLANE: f32 = 1.0; const FAR_PLANE: f32 = 10000.0; const FIRST_PERSON_INTERP_TIME: f32 = 0.05;