Add files via upload

This commit is contained in:
Daniel
2023-11-27 01:06:16 +02:00
committed by GitHub
parent e4161d82c7
commit 1c39199cc3
10 changed files with 1093 additions and 0 deletions

27
Config.pde Normal file
View File

@@ -0,0 +1,27 @@
int terrainLength = 1000;
int terrainWidth = 1000;
int minTreeHeight = 20;
int maxTreeHeight = 70;
float noiseStep = 0.02;
float noiseScale = 5;
long randomSeedValue = 55;
long noiseSeedValue = 254;
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;