From 32641d003553511713d1324f6344233725801f95 Mon Sep 17 00:00:00 2001 From: austin Date: Sun, 30 Mar 2025 21:36:52 -0400 Subject: [PATCH] farther draw radius --- assets/Data/game/biomes.json | 2 +- docs/src/progress/renderertodo.md | 1 + .../client/terrain/cells/ClientDrawCellManager.java | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/assets/Data/game/biomes.json b/assets/Data/game/biomes.json index 5215af5f..1810c66a 100644 --- a/assets/Data/game/biomes.json +++ b/assets/Data/game/biomes.json @@ -91,7 +91,7 @@ "pine2" ], "regularity": 0.6, - "threshold": 0.2, + "threshold": 0.05, "scale": 0.5, "priority": 1.0 } diff --git a/docs/src/progress/renderertodo.md b/docs/src/progress/renderertodo.md index cc172925..5a890434 100644 --- a/docs/src/progress/renderertodo.md +++ b/docs/src/progress/renderertodo.md @@ -1397,6 +1397,7 @@ AssetManager streaming budget Better chunk position hashing algo Hills generator work Fix foliage manager and cells confusing worldpos and absolutevoxelpos +Farther draw radius diff --git a/src/main/java/electrosphere/client/terrain/cells/ClientDrawCellManager.java b/src/main/java/electrosphere/client/terrain/cells/ClientDrawCellManager.java index e230a4cf..669be126 100644 --- a/src/main/java/electrosphere/client/terrain/cells/ClientDrawCellManager.java +++ b/src/main/java/electrosphere/client/terrain/cells/ClientDrawCellManager.java @@ -40,17 +40,17 @@ public class ClientDrawCellManager { /** * The distance for half resolution */ - public static final double HALF_RES_DIST = 12; + public static final double HALF_RES_DIST = 16; /** * The distance for quarter resolution */ - public static final double QUARTER_RES_DIST = 16; + public static final double QUARTER_RES_DIST = 24; /** * The distance for eighth resolution */ - public static final double EIGHTH_RES_DIST = 24; + public static final double EIGHTH_RES_DIST = 64; /** * The distance for sixteenth resolution