28 lines
559 B
Plaintext
28 lines
559 B
Plaintext
int terrainLength = 100;
|
|
int terrainWidth = 100;
|
|
|
|
int minTreeHeight = 20;
|
|
int maxTreeHeight = 70;
|
|
|
|
float noiseStep = 0.02;
|
|
float noiseScale = 5;
|
|
long randomSeedValue = 45;
|
|
long noiseSeedValue = 2544;
|
|
int noiseOctaves = 4;
|
|
float noiseFalloff = 0.5;
|
|
|
|
int cubeWidth = 20;
|
|
int cubeLength = 20;
|
|
float cubeSize = 100;
|
|
|
|
float camSpeed = 20;
|
|
float sensitivity = 0.01;
|
|
float pitch = 0;
|
|
float yaw = 0;
|
|
int farPlaneDistance = 4000;
|
|
|
|
float maxForce = 0.1;
|
|
float buoyancy = -0.02;
|
|
float damping = 0.995;
|
|
float windChangeInterval = 3000;
|