Merge pull request #30714 from Calinou/invert-default-fog-height

Invert and adjust the default fog height values
This commit is contained in:
Rémi Verschelde
2019-08-08 17:20:32 +02:00
committed by GitHub
4 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -398,8 +398,8 @@ public:
fog_transmit_enabled(true),
fog_transmit_curve(1),
fog_height_enabled(false),
fog_height_min(0),
fog_height_max(100),
fog_height_min(10),
fog_height_max(0),
fog_height_curve(1) {
}
};
+2 -2
View File
@@ -527,8 +527,8 @@ public:
fog_transmit_enabled(true),
fog_transmit_curve(1),
fog_height_enabled(false),
fog_height_min(0),
fog_height_max(100),
fog_height_min(10),
fog_height_max(0),
fog_height_curve(1) {
}
};