remove fog start and fog end parameters

This commit is contained in:
veclavtalica
2025-01-20 19:29:57 +03:00
parent 8a5d639f95
commit 3f9906a918
5 changed files with 3 additions and 9 deletions

View File

@ -13,7 +13,7 @@
#define TERRAIN_FREQUENCY 0.15f
#define TERRAIN_DISTANCE 32
#define TERRAIN_DISTANCE 64
#define HALF_TERRAIN_DISTANCE ((float)TERRAIN_DISTANCE / 2)
#define PLAYER_HEIGHT 0.6f
@ -225,8 +225,7 @@ static void ingame_tick(State *state) {
draw_skybox("/assets/miramar/miramar_*.tga");
ctx.fog_color = (Color){ 140, 147, 160, 255 };
ctx.fog_start = 0.9f;
ctx.fog_density = 0.05f;
ctx.fog_density = 0.03f;
}