]> git.localhorst.tv Git - blank.git/blobdiff - src/camera.cpp
limit number of chunks generated per frame
[blank.git] / src / camera.cpp
index 8f618672f5a4b17266ab64388a1fc3d3a1524b0e..eeb4dcecaffa7ab9363f716f7f31ea2e4d430461 100644 (file)
@@ -10,7 +10,7 @@ Camera::Camera()
 : fov(45.0f)
 , aspect(1.0f)
 , near_clip(0.1f)
-, far_clip(100.0f)
+, far_clip(256.0f)
 , projection(glm::perspective(fov, aspect, near_clip, far_clip)) {
 
 }