From 0625abdaf4df8e4d76d981d34e300cd895b5029a Mon Sep 17 00:00:00 2001 From: austin Date: Fri, 29 Nov 2024 12:26:12 -0500 Subject: [PATCH] lower grass radius --- docs/src/progress/renderertodo.md | 1 + .../client/terrain/foliage/FoliageCellManager.java | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/src/progress/renderertodo.md b/docs/src/progress/renderertodo.md index e5c1c653..8c32d3c6 100644 --- a/docs/src/progress/renderertodo.md +++ b/docs/src/progress/renderertodo.md @@ -1171,6 +1171,7 @@ Convert server physics cell generation to executor service Simplifying physics cases Allow variable collision bits for collidable entities Autodisable terrain colliders +Lower grass radius # TODO diff --git a/src/main/java/electrosphere/client/terrain/foliage/FoliageCellManager.java b/src/main/java/electrosphere/client/terrain/foliage/FoliageCellManager.java index 9166a74c..427cd225 100644 --- a/src/main/java/electrosphere/client/terrain/foliage/FoliageCellManager.java +++ b/src/main/java/electrosphere/client/terrain/foliage/FoliageCellManager.java @@ -45,17 +45,17 @@ public class FoliageCellManager { /** * The distance for quarter resolution */ - public static final double QUARTER_RES_DIST = 20 * 20; + public static final double QUARTER_RES_DIST = 16 * 16; /** * The distance for eighth resolution */ - public static final double EIGHTH_RES_DIST = 32 * 32; + public static final double EIGHTH_RES_DIST = 24 * 24; /** * The distance for sixteenth resolution */ - public static final double SIXTEENTH_RES_DIST = 128 * 128; + public static final double SIXTEENTH_RES_DIST = 64 * 64; /** * Lod value for a full res chunk