mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Mapgen V7: Huge rewrite, also tweaks to cavegen et al.
This commit is contained in:
parent
3607fae75a
commit
18d7bc7fa1
12 changed files with 452 additions and 196 deletions
16
src/biome.h
16
src/biome.h
|
@ -45,14 +45,20 @@ public:
|
|||
std::string name;
|
||||
u32 flags;
|
||||
|
||||
std::string top_nodename;
|
||||
std::string filler_nodename;
|
||||
std::string nname_top;
|
||||
std::string nname_filler;
|
||||
std::string nname_water;
|
||||
std::string nname_dust;
|
||||
std::string nname_dust_water;
|
||||
|
||||
content_t c_top;
|
||||
s16 top_depth;
|
||||
|
||||
content_t c_filler;
|
||||
s16 filler_height;
|
||||
content_t c_water;
|
||||
content_t c_dust;
|
||||
content_t c_dust_water;
|
||||
|
||||
s16 depth_top;
|
||||
s16 depth_filler;
|
||||
|
||||
s16 height_min;
|
||||
s16 height_max;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue