From f0b945d378a157a780f56b1fc015b7937e151852 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sat, 13 Apr 2024 20:34:28 -0400 Subject: Bugfixes, texture filtering --- src/state.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/state.rs') diff --git a/src/state.rs b/src/state.rs index d2b9bad..7a9cdbe 100644 --- a/src/state.rs +++ b/src/state.rs @@ -92,8 +92,9 @@ impl State { projection: glam::Mat4::perspective_lh( std::f32::consts::PI / 4.0, context::RENDER_WIDTH / context::RENDER_HEIGHT, - 0.1, - 400.0, + // 0.1, + 0.5, + 50.0, ), camera: (glam::Vec3::new(0.0, 0.0, 0.0), glam::Vec3::new(0.0, 0.0, 1.0), glam::Vec3::new(0.0, 1.0, 0.0)), lighting: ( -- cgit v1.2.3