From c0e2e78b1c24edef5d68dabbd70e8a583e0bb152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20S=C3=A1nchez?= Date: Sun, 12 Nov 2023 20:45:43 -0600 Subject: [PATCH] replace pbs with smothlighting params --- src/chunk/chunk_queue.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/chunk/chunk_queue.rs b/src/chunk/chunk_queue.rs index 79bfc23..1ce41cd 100644 --- a/src/chunk/chunk_queue.rs +++ b/src/chunk/chunk_queue.rs @@ -134,11 +134,11 @@ impl ChunkQueue { &grid, &*breg, MeshingAlgorithm::Culling, - Some(PbsParameters { - pbs_value: 0.4, - min: 0.2, - smoothing: PbsSmoothing::Low, - }), + Some(SmoothLightingParameters { + intensity: 0.5, + max: 0.7, + smoothing: 1.5, + apply_at_gen: true }), )?; Some((t, grid, cords)) });