From b579882324b6f20e04220f6cea735481abf18d47 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Mon, 26 Sep 2022 11:03:27 -0400 Subject: multichunk meshing --- engine/xe_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine') diff --git a/engine/xe_engine.cpp b/engine/xe_engine.cpp index 37cba41..b138942 100644 --- a/engine/xe_engine.cpp +++ b/engine/xe_engine.cpp @@ -56,7 +56,7 @@ bool Engine::poll() { frameTime = std::chrono::duration(newTime - currentTime).count(); currentTime = newTime; float aspect = xeRenderer.getAspectRatio(); - xeCamera.setPerspectiveProjection(glm::radians(FOV), aspect, 0.1f, 100.f); + xeCamera.setPerspectiveProjection(glm::radians(FOV), aspect, 0.1f, 1000.f); return !xeWindow.shouldClose(); } -- cgit v1.2.3-freya