Increased near plane value

This commit is contained in:
Luc Fauvel 2019-10-09 22:22:36 -04:00
parent 76a47bcc1f
commit b3697e1ea7

View File

@ -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;