lower grass radius
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good

This commit is contained in:
austin 2024-11-29 12:26:12 -05:00
parent cf9371461b
commit 0625abdaf4
2 changed files with 4 additions and 3 deletions

View File

@ -1171,6 +1171,7 @@ Convert server physics cell generation to executor service
Simplifying physics cases Simplifying physics cases
Allow variable collision bits for collidable entities Allow variable collision bits for collidable entities
Autodisable terrain colliders Autodisable terrain colliders
Lower grass radius
# TODO # TODO

View File

@ -45,17 +45,17 @@ public class FoliageCellManager {
/** /**
* The distance for quarter resolution * 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 * 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 * 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 * Lod value for a full res chunk