37 lines
915 B
TypeScript
37 lines
915 B
TypeScript
export const GRASS_CONFIG = {
|
|
enabled: true,
|
|
patchSize: 30,
|
|
bladeCount: 32000,
|
|
bladeWidth: 0.08,
|
|
maxBladeHeight: 0.56,
|
|
randomHeightAmount: 0.25,
|
|
surfaceOffset: 0.025,
|
|
heightTextureSize: 128,
|
|
windNoiseScale: 0.9,
|
|
windStrength: 0.35,
|
|
baldPatchModifier: 1.1,
|
|
falloffSharpness: 0.35,
|
|
heightNoiseFrequency: 9,
|
|
heightNoiseAmplitude: 1,
|
|
clumpFrequency: 2.6,
|
|
clumpThreshold: 0.18,
|
|
clumpSoftness: 0.45,
|
|
zoneFrequency: 0.035,
|
|
noGrassZoneThreshold: 0.2,
|
|
sparseZoneThreshold: 0.4,
|
|
mediumZoneThreshold: 0.65,
|
|
zoneSoftness: 0.08,
|
|
noGrassZoneHeight: 0,
|
|
sparseZoneHeight: 0.08,
|
|
mediumZoneHeight: 0.45,
|
|
tallZoneHeight: 1,
|
|
noGrassZoneDensity: 0,
|
|
sparseZoneDensity: 0.08,
|
|
mediumZoneDensity: 0.72,
|
|
tallZoneDensity: 1,
|
|
maxBendAngle: 14,
|
|
} as const;
|
|
|
|
export const GRASS_COLORS = ["#84C66B", "#67B058", "#A3CA5B"] as const;
|
|
export const GRASS_BASE_COLOR = "#1A3A1A" as const;
|