Adjust far plane and bring near plane back in a bit

This commit is contained in:
Imbris 2019-10-10 22:24:24 +00:00
parent b3697e1ea7
commit 2651cb9179

View File

@ -4,8 +4,8 @@ use frustum_query::frustum::Frustum;
use std::f32::consts::PI;
use vek::*;
const NEAR_PLANE: f32 = 1.0;
const FAR_PLANE: f32 = 10000.0;
const NEAR_PLANE: f32 = 0.5;
const FAR_PLANE: f32 = 5000.0;
const FIRST_PERSON_INTERP_TIME: f32 = 0.05;
const THIRD_PERSON_INTERP_TIME: f32 = 0.1;