lower grass radius
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
This commit is contained in:
parent
cf9371461b
commit
0625abdaf4
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user