mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Mgv7: Replace small pseudorandom caves with 3D noise tunnels. Fewer large caves
This commit is contained in:
parent
a39c136e69
commit
2f0a8f1c3e
2 changed files with 44 additions and 13 deletions
|
@ -42,6 +42,8 @@ struct MapgenV7Params : public MapgenSpecificParams {
|
|||
NoiseParams np_ridge_uwater;
|
||||
NoiseParams np_mountain;
|
||||
NoiseParams np_ridge;
|
||||
NoiseParams np_cave1;
|
||||
NoiseParams np_cave2;
|
||||
|
||||
MapgenV7Params();
|
||||
~MapgenV7Params() {}
|
||||
|
@ -75,6 +77,8 @@ public:
|
|||
Noise *noise_ridge_uwater;
|
||||
Noise *noise_mountain;
|
||||
Noise *noise_ridge;
|
||||
Noise *noise_cave1;
|
||||
Noise *noise_cave2;
|
||||
|
||||
Noise *noise_heat;
|
||||
Noise *noise_humidity;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue